[jira] [Commented] (SOLR-13419) Add TRA denoting Infix to TRA collection names

2019-06-20 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/SOLR-13419?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16868833#comment-16868833
 ] 

ASF subversion and git services commented on SOLR-13419:


Commit 45b000e7ae08b04bdf369f8f70acd6698809bbde in lucene-solr's branch 
refs/heads/branch_8x from Gus Heck
[ https://gitbox.apache.org/repos/asf?p=lucene-solr.git;h=45b000e ]

SOLR-13419 - Better infix for TRA collection names


> Add TRA denoting Infix to TRA collection names
> --
>
> Key: SOLR-13419
> URL: https://issues.apache.org/jira/browse/SOLR-13419
> Project: Solr
>  Issue Type: Sub-task
>  Components: SolrCloud
>Affects Versions: master (9.0)
>Reporter: Gus Heck
>Assignee: Gus Heck
>Priority: Major
> Attachments: SOLR-13419.patch, SOLR-13419.patch
>
>
> One of the things that Dimensional Routed aliases (DRA) will need to be able 
> to do is provide the component routing features based on the route value in 
> the collection name. With multiple dimensions it becomes necessary to pull 
> this information out on a per-dimension basis and the current Time Routed 
> Alias (TRA) collection names have only a simple underscore between the alias 
> name and the route value timestamp. Furthermore the timestamps are variable 
> in length, having truncation of low significance zero fields as an 
> intentional feature (collections falling evenly on the month boundary will 
> omit the day/hour/min fields). This makes recognizing the TRA part of a DRA 
> complex.  This issue will bring TRA's in line with CRA's so that both follow 
> the pattern:
> alias__type__routevalue
> Specifically the new pattern will use __TRA__ for the type section. This 
> change must not break existing TRA's, and will not update existing collection 
> names, but the two formats have to co-exist peacefully going forward. DRA's 
> will only support time dimensions with the new format however, with a general 
> form of:
> alias__type__routevalue__type__routevalue



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

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



[jira] [Commented] (SOLR-13419) Add TRA denoting Infix to TRA collection names

2019-06-20 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/SOLR-13419?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16868540#comment-16868540
 ] 

ASF subversion and git services commented on SOLR-13419:


Commit 5d47875184e09e9e811b5dfde397222db6233a78 in lucene-solr's branch 
refs/heads/master from Gus Heck
[ https://gitbox.apache.org/repos/asf?p=lucene-solr.git;h=5d47875 ]

SOLR-13419 - Better infix for TRA collection names


> Add TRA denoting Infix to TRA collection names
> --
>
> Key: SOLR-13419
> URL: https://issues.apache.org/jira/browse/SOLR-13419
> Project: Solr
>  Issue Type: Sub-task
>  Components: SolrCloud
>Affects Versions: master (9.0)
>Reporter: Gus Heck
>Assignee: Gus Heck
>Priority: Major
> Attachments: SOLR-13419.patch, SOLR-13419.patch
>
>
> One of the things that Dimensional Routed aliases (DRA) will need to be able 
> to do is provide the component routing features based on the route value in 
> the collection name. With multiple dimensions it becomes necessary to pull 
> this information out on a per-dimension basis and the current Time Routed 
> Alias (TRA) collection names have only a simple underscore between the alias 
> name and the route value timestamp. Furthermore the timestamps are variable 
> in length, having truncation of low significance zero fields as an 
> intentional feature (collections falling evenly on the month boundary will 
> omit the day/hour/min fields). This makes recognizing the TRA part of a DRA 
> complex.  This issue will bring TRA's in line with CRA's so that both follow 
> the pattern:
> alias__type__routevalue
> Specifically the new pattern will use __TRA__ for the type section. This 
> change must not break existing TRA's, and will not update existing collection 
> names, but the two formats have to co-exist peacefully going forward. DRA's 
> will only support time dimensions with the new format however, with a general 
> form of:
> alias__type__routevalue__type__routevalue



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

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



[jira] [Commented] (SOLR-13419) Add TRA denoting Infix to TRA collection names

2019-06-17 Thread Gus Heck (JIRA)


[ 
https://issues.apache.org/jira/browse/SOLR-13419?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16865907#comment-16865907
 ] 

Gus Heck commented on SOLR-13419:
-

Updated patch for current master, just some test readability changes and 
CHANGES.txt entry. Will commit soon since this has been avail for review for 
1.5 mo.

> Add TRA denoting Infix to TRA collection names
> --
>
> Key: SOLR-13419
> URL: https://issues.apache.org/jira/browse/SOLR-13419
> Project: Solr
>  Issue Type: Sub-task
>  Components: SolrCloud
>Affects Versions: master (9.0)
>Reporter: Gus Heck
>Assignee: Gus Heck
>Priority: Major
> Attachments: SOLR-13419.patch, SOLR-13419.patch
>
>
> One of the things that Dimensional Routed aliases (DRA) will need to be able 
> to do is provide the component routing features based on the route value in 
> the collection name. With multiple dimensions it becomes necessary to pull 
> this information out on a per-dimension basis and the current Time Routed 
> Alias (TRA) collection names have only a simple underscore between the alias 
> name and the route value timestamp. Furthermore the timestamps are variable 
> in length, having truncation of low significance zero fields as an 
> intentional feature (collections falling evenly on the month boundary will 
> omit the day/hour/min fields). This makes recognizing the TRA part of a DRA 
> complex.  This issue will bring TRA's in line with CRA's so that both follow 
> the pattern:
> alias__type__routevalue
> Specifically the new pattern will use __TRA__ for the type section. This 
> change must not break existing TRA's, and will not update existing collection 
> names, but the two formats have to co-exist peacefully going forward. DRA's 
> will only support time dimensions with the new format however, with a general 
> form of:
> alias__type__routevalue__type__routevalue



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

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



[jira] [Commented] (SOLR-13419) Add TRA denoting Infix to TRA collection names

2019-04-30 Thread Gus Heck (JIRA)


[ 
https://issues.apache.org/jira/browse/SOLR-13419?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16830662#comment-16830662
 ] 

Gus Heck commented on SOLR-13419:
-

Patch to implement, relies on changes from SOLR-13420 for the unit test. 
Includes fixes to several aspects of TRA test and support for autoDeleteAge in 
CollectionAdminRequest (which is used in the test)

> Add TRA denoting Infix to TRA collection names
> --
>
> Key: SOLR-13419
> URL: https://issues.apache.org/jira/browse/SOLR-13419
> Project: Solr
>  Issue Type: Sub-task
>  Security Level: Public(Default Security Level. Issues are Public) 
>  Components: SolrCloud
>Affects Versions: master (9.0)
>Reporter: Gus Heck
>Assignee: Gus Heck
>Priority: Major
> Attachments: SOLR-13419.patch
>
>
> One of the things that Dimensional Routed aliases (DRA) will need to be able 
> to do is provide the component routing features based on the route value in 
> the collection name. With multiple dimensions it becomes necessary to pull 
> this information out on a per-dimension basis and the current Time Routed 
> Alias (TRA) collection names have only a simple underscore between the alias 
> name and the route value timestamp. Furthermore the timestamps are variable 
> in length, having truncation of low significance zero fields as an 
> intentional feature (collections falling evenly on the month boundary will 
> omit the day/hour/min fields). This makes recognizing the TRA part of a DRA 
> complex.  This issue will bring TRA's in line with CRA's so that both follow 
> the pattern:
> alias__type__routevalue
> Specifically the new pattern will use __TRA__ for the type section. This 
> change must not break existing TRA's, and will not update existing collection 
> names, but the two formats have to co-exist peacefully going forward. DRA's 
> will only support time dimensions with the new format however, with a general 
> form of:
> alias__type__routevalue__type__routevalue



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

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