[jira] [Updated] (CASSANDRA-15082) SASI SPARSE mode 5 limit

2019-11-27 Thread Edward Capriolo (Jira)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-15082?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Edward Capriolo updated CASSANDRA-15082:

Status: Open  (was: Resolved)

> SASI SPARSE mode 5 limit
> 
>
> Key: CASSANDRA-15082
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15082
> Project: Cassandra
>  Issue Type: Improvement
>  Components: Feature/SASI
>Reporter: Edward Capriolo
>Priority: Normal
>
> I do not know what the "improvement" should be here, but I ran into this:
> [https://github.com/apache/cassandra/blob/cassandra-3.11/src/java/org/apache/cassandra/index/sasi/disk/OnDiskIndexBuilder.java#L585]
> Term '55.3' belongs to more than 5 keys in sparse mode, which is not allowed.
> The only reference I can find to the limit is here:
>  [http://www.doanduyhai.com/blog/?p=2058]
> Why is it 5? Could it be a variable? Could it be an option when creating the 
> table? Why or why not?
> This seems awkward. A user can insert more then 5 rows into a table, and it 
> "works". IE you can write and you can query that table getting more than 5 
> results, but the index will not flush to disk. It throws an IOException.
> Maybe I am misunderstanding, but this seems impossible to support, if users 
> inserts the same value 5 times, the entire index will not flush to disk?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Updated] (CASSANDRA-15082) SASI SPARSE mode 5 limit

2019-11-27 Thread Alex Petrov (Jira)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-15082?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Alex Petrov updated CASSANDRA-15082:

Resolution: Duplicate
Status: Resolved  (was: Triage Needed)

> SASI SPARSE mode 5 limit
> 
>
> Key: CASSANDRA-15082
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15082
> Project: Cassandra
>  Issue Type: Improvement
>  Components: Feature/SASI
>Reporter: Edward Capriolo
>Priority: Normal
>
> I do not know what the "improvement" should be here, but I ran into this:
> [https://github.com/apache/cassandra/blob/cassandra-3.11/src/java/org/apache/cassandra/index/sasi/disk/OnDiskIndexBuilder.java#L585]
> Term '55.3' belongs to more than 5 keys in sparse mode, which is not allowed.
> The only reference I can find to the limit is here:
>  [http://www.doanduyhai.com/blog/?p=2058]
> Why is it 5? Could it be a variable? Could it be an option when creating the 
> table? Why or why not?
> This seems awkward. A user can insert more then 5 rows into a table, and it 
> "works". IE you can write and you can query that table getting more than 5 
> results, but the index will not flush to disk. It throws an IOException.
> Maybe I am misunderstanding, but this seems impossible to support, if users 
> inserts the same value 5 times, the entire index will not flush to disk?



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Updated] (CASSANDRA-15082) SASI SPARSE mode 5 limit

2019-06-04 Thread Jeremy Hanna (JIRA)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-15082?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jeremy Hanna updated CASSANDRA-15082:
-
Component/s: Feature/SASI

> SASI SPARSE mode 5 limit
> 
>
> Key: CASSANDRA-15082
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15082
> Project: Cassandra
>  Issue Type: Improvement
>  Components: Feature/SASI
>Reporter: Edward Capriolo
>Priority: Normal
>
> I do not know what the "improvement" should be here, but I ran into this:
> [https://github.com/apache/cassandra/blob/cassandra-3.11/src/java/org/apache/cassandra/index/sasi/disk/OnDiskIndexBuilder.java#L585]
> Term '55.3' belongs to more than 5 keys in sparse mode, which is not allowed.
> The only reference I can find to the limit is here:
>  [http://www.doanduyhai.com/blog/?p=2058]
> Why is it 5? Could it be a variable? Could it be an option when creating the 
> table? Why or why not?
> This seems awkward. A user can insert more then 5 rows into a table, and it 
> "works". IE you can write and you can query that table getting more than 5 
> results, but the index will not flush to disk. It throws an IOException.
> Maybe I am misunderstanding, but this seems impossible to support, if users 
> inserts the same value 5 times, the entire index will not flush to disk?



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Updated] (CASSANDRA-15082) SASI SPARSE mode 5 limit

2019-04-08 Thread Edward Capriolo (JIRA)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-15082?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Edward Capriolo updated CASSANDRA-15082:

Description: 
I do not know what the "improvement" should be here, but I ran into this:

[https://github.com/apache/cassandra/blob/cassandra-3.11/src/java/org/apache/cassandra/index/sasi/disk/OnDiskIndexBuilder.java#L585]

Term '55.3' belongs to more than 5 keys in sparse mode, which is not allowed.

The only reference I can find to the limit is here:
 [http://www.doanduyhai.com/blog/?p=2058]

Why is it 5? Could it be a variable? Could it be an option when creating the 
table? Why or why not?

This seems awkward. A user can insert more then 5 rows into a table, and it 
"works". IE you can write and you can query that table getting more than 5 
results, but the index will not flush to disk. It throws an IOException.

Maybe I am misunderstanding, but this seems impossible to support, if users 
insert the same value 5 times, the entire index will not flush to disk?

  was:
I do not know what the "improvement" should be here, but I ran into this:

[https://github.com/apache/cassandra/blob/cassandra-3.11/src/java/org/apache/cassandra/index/sasi/disk/OnDiskIndexBuilder.java#L585]

Term '55.3' belongs to more than 5 keys in sparse mode, which is not allowed. 

The only reference I can find to the limit is here:
[http://www.doanduyhai.com/blog/?p=2058]

Why is it 5? Could it be a variable? Could it be an option when creating the 
table? Why or why not?

This seems awkward. A usercan insert more then 5 rows into a table, and it 
"works". IE you can write an you can query, but the index will not flush to 
disk. It throws an IOException. I

Maybe I am misunderstanding, but this seems impossible to support, if users 
insert the same value 5 times, the entire index will not flush to disk?


> SASI SPARSE mode 5 limit
> 
>
> Key: CASSANDRA-15082
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15082
> Project: Cassandra
>  Issue Type: Improvement
>Reporter: Edward Capriolo
>Priority: Normal
>
> I do not know what the "improvement" should be here, but I ran into this:
> [https://github.com/apache/cassandra/blob/cassandra-3.11/src/java/org/apache/cassandra/index/sasi/disk/OnDiskIndexBuilder.java#L585]
> Term '55.3' belongs to more than 5 keys in sparse mode, which is not allowed.
> The only reference I can find to the limit is here:
>  [http://www.doanduyhai.com/blog/?p=2058]
> Why is it 5? Could it be a variable? Could it be an option when creating the 
> table? Why or why not?
> This seems awkward. A user can insert more then 5 rows into a table, and it 
> "works". IE you can write and you can query that table getting more than 5 
> results, but the index will not flush to disk. It throws an IOException.
> Maybe I am misunderstanding, but this seems impossible to support, if users 
> insert the same value 5 times, the entire index will not flush to disk?



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org



[jira] [Updated] (CASSANDRA-15082) SASI SPARSE mode 5 limit

2019-04-08 Thread Edward Capriolo (JIRA)


 [ 
https://issues.apache.org/jira/browse/CASSANDRA-15082?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Edward Capriolo updated CASSANDRA-15082:

Description: 
I do not know what the "improvement" should be here, but I ran into this:

[https://github.com/apache/cassandra/blob/cassandra-3.11/src/java/org/apache/cassandra/index/sasi/disk/OnDiskIndexBuilder.java#L585]

Term '55.3' belongs to more than 5 keys in sparse mode, which is not allowed.

The only reference I can find to the limit is here:
 [http://www.doanduyhai.com/blog/?p=2058]

Why is it 5? Could it be a variable? Could it be an option when creating the 
table? Why or why not?

This seems awkward. A user can insert more then 5 rows into a table, and it 
"works". IE you can write and you can query that table getting more than 5 
results, but the index will not flush to disk. It throws an IOException.

Maybe I am misunderstanding, but this seems impossible to support, if users 
inserts the same value 5 times, the entire index will not flush to disk?

  was:
I do not know what the "improvement" should be here, but I ran into this:

[https://github.com/apache/cassandra/blob/cassandra-3.11/src/java/org/apache/cassandra/index/sasi/disk/OnDiskIndexBuilder.java#L585]

Term '55.3' belongs to more than 5 keys in sparse mode, which is not allowed.

The only reference I can find to the limit is here:
 [http://www.doanduyhai.com/blog/?p=2058]

Why is it 5? Could it be a variable? Could it be an option when creating the 
table? Why or why not?

This seems awkward. A user can insert more then 5 rows into a table, and it 
"works". IE you can write and you can query that table getting more than 5 
results, but the index will not flush to disk. It throws an IOException.

Maybe I am misunderstanding, but this seems impossible to support, if users 
insert the same value 5 times, the entire index will not flush to disk?


> SASI SPARSE mode 5 limit
> 
>
> Key: CASSANDRA-15082
> URL: https://issues.apache.org/jira/browse/CASSANDRA-15082
> Project: Cassandra
>  Issue Type: Improvement
>Reporter: Edward Capriolo
>Priority: Normal
>
> I do not know what the "improvement" should be here, but I ran into this:
> [https://github.com/apache/cassandra/blob/cassandra-3.11/src/java/org/apache/cassandra/index/sasi/disk/OnDiskIndexBuilder.java#L585]
> Term '55.3' belongs to more than 5 keys in sparse mode, which is not allowed.
> The only reference I can find to the limit is here:
>  [http://www.doanduyhai.com/blog/?p=2058]
> Why is it 5? Could it be a variable? Could it be an option when creating the 
> table? Why or why not?
> This seems awkward. A user can insert more then 5 rows into a table, and it 
> "works". IE you can write and you can query that table getting more than 5 
> results, but the index will not flush to disk. It throws an IOException.
> Maybe I am misunderstanding, but this seems impossible to support, if users 
> inserts the same value 5 times, the entire index will not flush to disk?



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

-
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org