https://github.com/thinkaurelius/titan
Name Target Message Date
HEAD ee226e5 Merge pull request #1196 from achinthagunasekara/patch-1 Update GraphOfTheGodsFactory.java 03 December 2015, 10:40:44 UTC
refs/heads/0.5.0_docs 6322fbf Updating some Gremlin snippets in the docs for 0.5 The most important change in this commit is replacement of some Gremlin `(iterable of vertices).type` calls with `(iterable of vertices)*.getVertexLabel()`. I also ran through the getting-started steps in the intro again on 0.5 and copy-pasted the output as it appears today: type=foo no longer appears in `map` output, calling `map` on a single vertex lists each property on a separate line (used to be all on one line enclosed by curly braces apparently), and edge toStrings are formatted slightly differently. The rest of the changes should just account for different vertex IDs than used to be assigned in the getting-started scenario. (cherry picked from commit f39fae8fdc1fdd1ab1e2531efb0ccfa4a8179c48) 26 November 2014, 14:35:07 UTC
refs/heads/0.5.1_docs c5fe66c Updating some Gremlin snippets in the docs for 0.5 The most important change in this commit is replacement of some Gremlin `(iterable of vertices).type` calls with `(iterable of vertices)*.getVertexLabel()`. I also ran through the getting-started steps in the intro again on 0.5 and copy-pasted the output as it appears today: type=foo no longer appears in `map` output, calling `map` on a single vertex lists each property on a separate line (used to be all on one line enclosed by curly braces apparently), and edge toStrings are formatted slightly differently. The rest of the changes should just account for different vertex IDs than used to be assigned in the getting-started scenario. (cherry picked from commit f39fae8fdc1fdd1ab1e2531efb0ccfa4a8179c48) 26 November 2014, 14:35:07 UTC
refs/heads/0.5.2_docs 4634131 Updating some Gremlin snippets in the docs for 0.5 The most important change in this commit is replacement of some Gremlin `(iterable of vertices).type` calls with `(iterable of vertices)*.getVertexLabel()`. I also ran through the getting-started steps in the intro again on 0.5 and copy-pasted the output as it appears today: type=foo no longer appears in `map` output, calling `map` on a single vertex lists each property on a separate line (used to be all on one line enclosed by curly braces apparently), and edge toStrings are formatted slightly differently. The rest of the changes should just account for different vertex IDs than used to be assigned in the getting-started scenario. (cherry picked from commit f39fae8fdc1fdd1ab1e2531efb0ccfa4a8179c48) 26 November 2014, 14:35:07 UTC
refs/heads/0.5.3_docs fdb4455 Add pom.xml snip, test versions to 0.5.3 changelog 10 January 2015, 01:45:58 UTC
refs/heads/0.5.4_docs 246bef2 Add pom.xml snippets to changelogs for 0.5.{3,4} (cherry picked from commit 0da0f6842c2fbed68c1596d117f1d55d611e235b) 14 February 2015, 00:38:35 UTC
refs/heads/0.9.0-M2_docs 8fe9a1c Update changelog and upgrades for 0.9.0-M2 (cherry picked from commit 9bc036ab3e1ba468682460667ccb3a50eacfcbd7) Conflicts: CHANGELOG.asc UPGRADE.asc docs/changelog.txt docs/upgrade.txt 10 June 2015, 16:44:21 UTC
refs/heads/1.0.0_docs cbb97da cassandra typo: enablethrfit => enablethrift (cherry picked from commit f68549f5aa1534cb087cd1d2b6168b569cdf92c1) 29 September 2015, 19:10:44 UTC
refs/heads/caching 6d328e6 initial ExpirationKCVSCache to use query containers and off-heap storage 09 November 2014, 08:07:06 UTC
refs/heads/counter d8c51fd fix test and improve Cassandra implementations of the counter store 06 February 2014, 02:21:19 UTC
refs/heads/cql de111ab use QueryBuilder.select for getSlice query, enfore limit (if set) and consistency. 21 April 2014, 04:34:29 UTC
refs/heads/fdb05 47cfcb2 More exception wrapping. 29 July 2014, 18:15:36 UTC
refs/heads/gh-pages 40e14b1 Page updates for 1.0.0 19 September 2015, 22:11:03 UTC
refs/heads/issue_1040 e88771b Update Titan Gremlin plugin index mgmt imports Replacing MapReduceIndexJobs with MapReduceIndexManagement in the plugin's list of automatic imports 28 April 2015, 08:03:11 UTC
refs/heads/issue_488 5207127 Merge branch 'titan09' into issue_488 Conflicts: titan-core/src/main/java/com/thinkaurelius/titan/graphdb/olap/job/IndexRemoveJob.java 28 April 2015, 09:08:26 UTC
refs/heads/issue_756 d980284 Adding thin helper class for reindex on BDB More generally, IndexJobs takes a StandardTitanGraph and runs an IndexRepairJob (or ScanJob or VertexScanJob) over the open graph. This API isn't final. I've also got to properly dispose of the Gremlin snippet (as a test and possibly as part of the asciidocs as a code snippet, with some adaptation in each case) that I'm hastily embedding as a comment at the bottom of IndexJobs.java. For #756 07 April 2015, 09:34:30 UTC
refs/heads/issue_863 810a30b Removing oldfulgora and associated test methods OLAPTest and its subclasses remain, but with the oldfulgora-related test methods deleted. 11 February 2015, 05:36:52 UTC
refs/heads/issue_909 2a99d97 (Solr) only add + when AND query has more than one condition 13 January 2015, 06:12:27 UTC
refs/heads/issue_971 baf297d TTL: method rename, condition tweak, add comments The only substantial change in this commit is narrowing one condition in KCVSLogManager's constructor. Prior to this commit, the condition assumed that StoreFeatures.hasCellTTL implied !StoreFeatures.hasStoreTTL. This is true for all of the storage backends we have today, and even if it weren't true, it wouldn't result in incorrect operation, but it's still not necessarily true in general. Changed condition to check for StoreFeatures.hasCellTTL && !StorFeatures.hasStoreTTL, which was the original intent. The other changes are just cosmetic: * Added some comments * Removed a redundant precondition in TTLKCVSManager's constructor * Renamed TTLKCVSManager's supportsStoreTTL method to supportsAnyTTL. This is better because the method's return value is actually cellTTL || storeTTL... it's confusing to name that supportsStoreTTL when it really means "supportsCellOrStoreTTL". 28 April 2015, 23:01:24 UTC
refs/heads/issue_981 addb155 Weaken assertion in AbstractVertex.remove This assertion seems to fail whenever I have an existing TTL and want to change the TTL value. For example, this fails on titan09, which doesn't yet have any of the #981-related TTL tweaks immediately preceding this one in the git history. Remember to `export JAVA_OPTIONS='-ea'` before running gremlin.sh to enable assertions. g = TitanFactory.open('conf/titan-berkeleyje.properties') m = g.openManagement() m.setTTL(m.makeEdgeLabel('el').make(), 1, java.util.concurrent.TimeUnit.SECONDS) m.commit() m = g.openManagement() // Assertion fails on this setTTL invocation m.setTTL(m.getEdgeLabel('el'), 2, java.util.concurrent.TimeUnit.SECONDS) I think we never noticed this in practice because nobody runs with assertions enabled. I only stumbled across this by accident when working on new TTL tests in TitanGraphTest. I'm not sure if this commit is actually safe. Needs review. For #971 29 April 2015, 06:49:36 UTC
refs/heads/issue_981_bis ca60b36 Skip three cell-TTL-based tests as store dictates I added three new TitanGraphTest methods that require the storage backend to support cell TTL in 8f1520d60d79c8346a51258e5d96a7a107f26796, but I didn't do anything to ensure they only ran on stores that could support cell TTL. This caused spurious failures on some stores (e.g. InMemory). Adding early returns as is in similar cell-TTL-dependent test methods, even though I'm not enthusiastic about early return in test methods.q 02 May 2015, 03:06:16 UTC
refs/heads/master 1fc9959 Always close IndexReaders in LuceneIndex.mutate For #761 (0.4.x edition) This is a reimplementation of 0.5.1-SNAPSHOT's 5f562761e6d8d9dcb35d8c0eeacef91f0bfe74da on 0.4.5-SNAPSHOT. The affected bits were different enough between the two versions that it was easier to rewrite than resolve the conflicted cherry pick. 26 September 2014, 02:07:59 UTC
refs/heads/partitioning f8b9c5c Fix array bounds handling in ByteElementRange truncate() could trigger ArrayOutOfBoundsException. Fixed. 10 December 2013, 14:19:42 UTC
refs/heads/pearson-migration-hack 4a621c8 Decrement version to 0.5.0 30 August 2014, 13:52:29 UTC
refs/heads/titan-0.5.0-M2-tmp 680ae2d [maven-release-plugin] prepare for next development iteration 20 July 2014, 15:36:47 UTC
refs/heads/titan02 813cd4e Merge branch 'master' of github.com:thinkaurelius/titan 29 March 2013, 02:52:41 UTC
refs/heads/titan03 01d1c67 Also shaded titan-cassandra and titan-hbase. Removed "org" from the shading pattern to ensure that the storage backends can still communicate with the actual database. Since both Cassandra and HBase are apache projects, excluding "org" (for org.apache) makes sense. 08 December 2013, 01:39:16 UTC
refs/heads/titan05 cc41723 Merge branch 'issue_1142' into titan05 09 September 2015, 01:37:09 UTC
refs/heads/titan09 1349a5e Add 1.0.0 to compat manifest 19 September 2015, 21:52:26 UTC
refs/heads/titan09-3.0.1 79c9f9b Bump to TinkerPop 3.0.1-incubating. Added GraphProvider.Descriptor (as required for computer test GraphProviders). Still seeing some failing tests on the groovy side so this branch isn't building yet. 02 September 2015, 19:55:08 UTC
refs/heads/titan09-tp3m9rc1 c7e2dfd Minor extension of test case 05 May 2015, 06:12:52 UTC
refs/heads/titan10 ee226e5 Merge pull request #1196 from achinthagunasekara/patch-1 Update GraphOfTheGodsFactory.java 03 December 2015, 10:40:44 UTC
refs/heads/titan11 20ac6a4 Merge pull request #1322 from mebigfatguy/titan11 minor cleanups 01 June 2016, 10:28:20 UTC
refs/heads/titan11-ci 51c8ef7 reverting. changing .remove() semantics in TinkerPop. 10 February 2016, 19:28:22 UTC
refs/heads/titanb 655b7c3 Implementation of the "most connected partition" partitioning strategy 03 April 2013, 02:31:07 UTC
refs/heads/tp3-ci-30 51230ec Merge remote-tracking branch 'origin/titan10' into tp3-ci-30 Conflicts: pom.xml 17 November 2015, 18:15:33 UTC
refs/heads/tp3-ci-31 80d5993 Removed as many rexster references as made sense. Didn't do too much replacement with "Gremlin Server" stuff in the debian packaging stuff as it is generally out of date and expected to see removal as a whole. 16 December 2015, 18:53:46 UTC
refs/heads/tp3-ci-31-tx daf7682 Added fix to be applied to after TINKERPOP3-885 is merged. 07 November 2015, 18:51:15 UTC
refs/heads/zookeeper 43cc259 Initial untested ZK locking implementation Based on the lock recipe supplied with ZK 3.4.5 31 August 2013, 01:23:40 UTC
refs/notes/commits 8359ded Notes added by 'git notes add' 01 September 2014, 09:22:30 UTC
refs/notes/titan05 47abe79 Notes added by 'git notes add' 01 September 2014, 09:28:46 UTC
back to top