https://github.com/thinkaurelius/titan

sort by:
Revision Author Date Message Commit Date
7df580e [maven-release-plugin] prepare release 0.4.2 26 December 2013, 00:00:55 UTC
4b4fecb Update wikidoc commit pointer 25 December 2013, 23:59:04 UTC
420ffeb Make maven-gpg-plugin use gpg-agent 25 December 2013, 23:58:34 UTC
2d223e0 Overwrite UPGRADE.textile with wiki copy 25 December 2013, 17:47:33 UTC
b45c5ce Add 0.4.1 to titan.compatible.versions 24 December 2013, 02:00:57 UTC
eb9ec91 Copying backlogged changes from wiki to CHANGELOG Some updates to the Release-Notes page of the wiki were never propagated back into CHANGELOG.textile (including the entire set of 0.3.2 release notes). They should be in sync again now. 24 December 2013, 01:56:47 UTC
1ff3d2d Updated CHANGELOG for 0.4.2 24 December 2013, 01:49:56 UTC
ef5a136 Add Metrics counter of getVertex(long) calls Part of #402 23 December 2013, 22:23:56 UTC
034750d Replace AtomicLongs in CachedKCVS with Metrics This is the second half of #485 23 December 2013, 21:22:00 UTC
8acf320 Test import cleanup 23 December 2013, 21:21:06 UTC
b7e918a Change System.err.println to log.debug 23 December 2013, 19:50:26 UTC
b8258e1 Refactor metrics configuration handling Previous to this commit, GraphDatabaseConfiguration used metrics.enable-basic-metrics while Backend used storage.enable-basic-metrics. There's no good reason for these options to be separate. It's just confusing. The config option wording is also clumsy. In retrospect, it should really have been metrics.enabled. Titan's Metrics support and metrics.* config namespace grew out of the storage backend, but now Metrics covers other stuff in Titan besides storage. To support existing configs, I made GraphDatabaseConfiguration and Backend both consider metrics globally enabled when any one (or more) of the following config options are set to true: * storage.enable-basic-metrics * metrics.enable-basic-metrics * metrics.enabled Storage backend metrics are merged when of the following are true (they are each true by default): * metrics.merge-basic-metrics * storage.merge-basic-metrics 23 December 2013, 19:33:55 UTC
1bf0813 Update ConsistentKeyLockerTest for Metrics changes ConsistentKeyLockerTest is, by design, extremely sensitive to internals changes in ConsistentKeyLocker or AbstractLocker. The test started failing when I added calls to tx.getConfiguration().getMetricsPrefix() in AbstractLocker. In this commit, I changed ConsistentKeyLocker to allow any number of calls to tx.getConfiguration(). The configuration doesn't hold mutable lock state, and this is the second time I've stumbled over spurious tx.getConfiguration() failures in ConsistentKeyLockerTest, so I think relaxing this constraint is appropriate. 23 December 2013, 17:18:42 UTC
9840c19 Tweak getSlice and getKeys metrics names * prevent getSlice from attempting to log metrics with an empty-string name prefix when metrics are disabled * rename com.thinkaurelius.titan.getKeys.iterator.* to com.thinkaurelius.titan.stores.getKeys.iterator.* to conform with the naming pattern of every other storage metric 23 December 2013, 16:36:00 UTC
a179f32 Rename ExpirationStoreCache metrics When I originally added Metrics counters to this class, I mistakenly set the counter names to just "ExpirationStoreCache". Now the names start with GraphDatabaseConfiguration.METRICS_SYSTEM_PREFIX_DEFAULT + "." + "ExpirationStoreCache". In other words, the metrics in here now start with "com.thinkaurelius.titan.sys.ExpirationStoreCache". 23 December 2013, 16:33:12 UTC
b32822c Add Metrics counters on locking operations Metrics counters added for calls to and exceptions in the write, check, and delete lock methods of AbstractLocker. ConsistentKeyLocker extends AbstractLocker. A transaction-specific metrics name prefix is honored when set. 23 December 2013, 16:31:37 UTC
9396857 Reformat broken debug log message Fixes #544 23 December 2013, 16:30:13 UTC
1e0a628 Wrap QueryExecutor implementations with Metrics This times and counts (invocations and exceptions counted separately) calls to the methods on implementations of the QueryExecutor interface, when the calling transaction has metrics enabled. Any transaction-specific metrics prefix, if configured, is honored. Time spent in iterators returned by methods on the QueryExecutor interface are *not* covered by these metrics. This is part of #402. 23 December 2013, 14:28:33 UTC
2cd3aed Replacing AtomicLongs with Metrics Counters Because Metric counters do not support the notion of set/reset/clear, only increment and decrement, ExpirationStoreCache's metrics reset methods are now at best approximate. The reset methods may set their respective counters back to zero, or they set them down to a value slightly above zero. 21 December 2013, 04:43:45 UTC
d94d616 titan.sh: kill Cassandra only after Rexster dies `titan.sh stop` now waits up to 60 seconds by default (though this is configurable through an environment variable) for Rexster to disappear from the jps process table before attempting to kill Cassandra. This addresses issue 2 of 2 in #538. 20 December 2013, 21:09:14 UTC
c67ed62 Check for jps in $JAVA_HOME/bin when not on $PATH Addresses problem 1 of 2 in issue #538 20 December 2013, 20:58:32 UTC
5752140 Fixing test case: Oversaw reference to tx when refactoring to use graph throughout. 20 December 2013, 09:51:25 UTC
ec9abdf Merge branch 'master' of https://github.com/thinkaurelius/titan 20 December 2013, 08:50:02 UTC
a46ce94 Fixes #500. Fixes #535. 20 December 2013, 08:49:26 UTC
507a3fb Removed wrong test case. 20 December 2013, 07:26:45 UTC
99d550c Fixes #505. Fixes #498 20 December 2013, 07:25:04 UTC
b9cf88e Fixes #499. 20 December 2013, 03:38:19 UTC
8918017 Expunge uses of `uname -o` from shell scripts The -o option is not POSIX standard and does not exist on OS X (and possibly other platforms). Replaced with calls to just `uname`, without options, which under POSIX must behave the same as `uname -s`. This change is untested. It's intended to address #534, but needs to be verified manually before closing the issue. 19 December 2013, 16:30:52 UTC
5f8dbdb Avoid unnecessary serialVersionUID warning Replaced an anonymous HashMap-extending class with a call to Guava ImmutableMap.of(). The enclosing class is now warning-free. 19 December 2013, 03:27:49 UTC
5005da5 Add Astyanax RetryBackoffStrategy configuration Fixes #524 19 December 2013, 03:25:35 UTC
ffa27ea Fixes #507 introducing configuration option: ignore-unknown-index-key 19 December 2013, 03:12:24 UTC
a1584af toString on types returns the type's name instead of the vertex identifier. Fixes #525. 19 December 2013, 01:58:06 UTC
8f279ee Removing left over clear() method. 19 December 2013, 01:29:51 UTC
fe35a70 Fixes #307 19 December 2013, 01:09:31 UTC
f2713c5 Reordered name property creation to be first when creating types so that we don't have a lingering type vertex in case the ensuing exception is thrown and the transaction still committed. 19 December 2013, 00:35:49 UTC
afb73d6 Merge branch 'master' of github.com:tsecheran/titan into tsecheran-master 17 December 2013, 11:44:38 UTC
e50826b Merge branch 'fix-for-performance' of github.com:mpouttuclarke/titan into mpouttuclarke-fix-for-performance 17 December 2013, 10:39:00 UTC
be0b7c1 Merge branch 'issue_508_test' of github.com:MrKeyholder/titan into MrKeyholder-issue_508_test 17 December 2013, 09:56:52 UTC
b086337 Merge branch 'master' into issue_508 16 December 2013, 19:43:15 UTC
6c2171a Test case for #508 Resource leak when using 0.4.1 + cassandrathrift and iterating over all vertices 12 December 2013, 04:36:41 UTC
d687805 If there is only one thread, then the threadpool is null and this throws error 10 December 2013, 00:07:14 UTC
12e1a1e Increase HBase and Cassandra timeouts in testing Changed CONNECTION_TIMEOUT_KEY from 10s to 60s for Cassandra and HBase tests. This was motivated by performance testing on EC2, where truncating column families on Cassandra could take over ten seconds after many iterations of the same test method (truncating CFs after each run). I'm not sure why this operation was slow, but since it's just CF truncation in clearStorage() and so far does not appear to affect querying, I'm just going to bump up the timeout. The 60s value made the timeouts disappear on an EC2 c3.xlarge. 05 December 2013, 05:27:52 UTC
88918a9 Updated jub-effort.txt for c3.xlarge 05 December 2013, 05:04:55 UTC
54c758f don't hold on to the borrowed connections in Cassandra Thrift iterators 04 December 2013, 21:41:59 UTC
b28e83b Fix for gremlin.sh will take more than 9 params 04 December 2013, 19:50:01 UTC
7bb3f9d Allow env var override of perf test target time 03 December 2013, 23:36:33 UTC
99457fd [maven-release-plugin] prepare for next development iteration 24 November 2013, 10:10:41 UTC
2c010b7 [maven-release-plugin] prepare release 0.4.1 24 November 2013, 10:10:41 UTC
bc068e7 Remove Faunus mention from rewrite-tag.sh I added new error-checking to this script during the last Faunus release and copied my changes back to Titan afterward. I forgot to change a string containing the capitalized name of the project back from Faunus to Titan when copying. 24 November 2013, 10:08:07 UTC
f14e8a4 Update doc commit pointer 24 November 2013, 09:57:44 UTC
8f03cb8 Remove hazelcast mentions from website index 24 November 2013, 09:57:17 UTC
377ffbb Improve titan.sh's help/usage message 24 November 2013, 09:36:36 UTC
bac1978 Tweaking JRE6 pom stylesheet 24 November 2013, 05:14:08 UTC
6bb59f3 Avoid overlapping template matches in jre6.xslt When multiple template patterns in a stylesheet match, Saxon throws a warning and continues parsing. In this case the multiple match is harmless, but the warning is scary so I'm making a minor change to avoid the match overlap. 24 November 2013, 05:08:09 UTC
6709fe2 pom whitespace change 24 November 2013, 05:07:01 UTC
0d7ed3a pom.xml: move Saxon version declaration It seems that plugin configurations don't care about dependencyManagement versions. I would probably have to use pluginManagement here, but that just makes it less readable since the plugin is only used one time. 24 November 2013, 05:06:17 UTC
0878f4e Reduced loglevel of needlessly severe test log msg There was no reason for these two messages to be logged at ERROR. They belong at DEBUG or at most INFO. 24 November 2013, 04:48:43 UTC
218a912 Removed ES from titan-dist-cassandra Moved Cassandra + ES tests into titan-dist-all and made titan-dist-server include those new tests. Also added a BDB + ES test in titan-dist-all. 24 November 2013, 04:48:01 UTC
228342f Remove stale reference to jre7.xslt I removed this stylesheet a few commits ago, but a reference to it lived on in pom.xml. Deleted. 24 November 2013, 04:05:08 UTC
f32ae17 Remove jre7 profiles from poms JRE7-compatible behavior is now the pom default. Keeping these profiles no longer makes sense now that I've added a stylesheet to rewrite them for JRE6 builds, and Maven profile activation is error prone anyway (e.g. activating one or more profiles on the command line deactivates all profiles that have <activeByDefault>true</activeByDefault>). 24 November 2013, 04:03:30 UTC
0eda1f3 Set 0.4.1's scheduled release date 24 November 2013, 02:23:45 UTC
2f1617f Fixing titan-dist-all, -server jre6 packaging bug The jre6.xslt stylesheet now removes the persistit dependencies from these two distro poms. I also deleted the jre7.xslt stylesheet, since reversing this operation is nontrivial. So now `git checkout` is the way to reverse it. 23 November 2013, 12:27:09 UTC
1abf2ed Removing uses of Java 7's ProcessBuilder.Redirect This is a convenience introduced in Java SE 7. I recently used it in HBase's test harness and in the distribution failsafe tests without realizing that it wasn't present in Java 6. This commit replaces it with a clunkier but functionally equivalent Java 6 alternative. 23 November 2013, 11:09:00 UTC
0458891 Flesh out JRE6/7 targeting XSLT sheets Added retargeting support to the distribution archives, including both their contents and the filenames of the zip/tar.bz2/asc files. 23 November 2013, 11:07:40 UTC
830a90d Adding pom XSLT stylesheets for JRE retargeting 23 November 2013, 04:21:10 UTC
d80815e Add XSLT pom stylesheets to support JRE6 builds 23 November 2013, 03:35:38 UTC
b9f5090 Remove obsolete, unused titan-serve conf file titan-server-rexster.xml is no longer needed now that RexsterTitanServer is out 22 November 2013, 16:22:21 UTC
b4940b3 fixed eventual graph test to reflect recent updates 21 November 2013, 03:36:36 UTC
c97601a Added metrics test cases for Cassandra and Hbase. Fixed bug that circumvented type caching (related to #489). 21 November 2013, 02:43:09 UTC
6576a7a Set cache concurrency to available processors 21 November 2013, 02:11:45 UTC
06755bf Fixed exception message 19 November 2013, 22:56:38 UTC
ca48986 use Guava cache in RelationQueryCache 19 November 2013, 22:21:00 UTC
674dd4c computed size of guava entry with soft values 19 November 2013, 09:35:15 UTC
a145711 updated changelog. 19 November 2013, 08:46:28 UTC
19d20cb Removed streaming of large adjacency result sets since such iterative updating of limits is expensive and has very little benefit. Users should set a limit up front. In the REPL, a CTRL-C type functionality should be available to abort long running queries. 19 November 2013, 08:11:42 UTC
a1870b3 improved database level cache sizing 19 November 2013, 07:59:31 UTC
0bcede8 updated changelog, simplifed parameter passing. 19 November 2013, 07:10:51 UTC
ee21e37 updated cache configuration for non-embedded local configuration to use 3 minute timeout. 19 November 2013, 04:28:11 UTC
1a19b02 Updated configuration files to enable cache by default 19 November 2013, 04:20:02 UTC
10a0e03 Added a concurrent update test for db level cache. 19 November 2013, 04:18:54 UTC
1887ef9 Improved database cache test coverage 19 November 2013, 01:00:40 UTC
7311776 Better size estimation for cache 19 November 2013, 00:50:53 UTC
9c539d8 needed to change order of tests for results to line up. 18 November 2013, 23:04:00 UTC
19a94c8 Added additional counting test case 18 November 2013, 22:53:35 UTC
aa5049e Added additional counting test case 18 November 2013, 22:50:42 UTC
7bfdab7 Updated changelog, upgrade, readme and notice for the upcoming 0.4.1 release 18 November 2013, 21:56:36 UTC
6807178 Updated indexing predicates to distinguish between token based and entire string based PREFIX and REGEX queries. Implemented those changes throughout the stack and updated test cases. 18 November 2013, 21:56:17 UTC
b4ade65 Removing ${titan.classifier} from poms 17 November 2013, 14:49:57 UTC
f8404ce Cygwin compatibility for titan-server 17 November 2013, 14:42:55 UTC
a146d98 Further reduced testTransactionalMemory iterations 16 November 2013, 09:29:50 UTC
d5e9a62 Reducing iteration count in testTranactionalMemory A single execution of this method takes approximately 35 minutes on an EC2 m1.medium. This is unnecessarily for performance testing purposes with JUnitBenchmarks. I reduced the iteration count by an order of magnitude (100k to 10k) and made the thread count equal to the number of cores * 2 rather than the hardcoded number 8. 16 November 2013, 08:53:25 UTC
eb38250 Tweaks to performance test surefire config 16 November 2013, 06:13:17 UTC
96913c0 Make HBase shutdown more carefully in tests When running memory and performance tests through Maven, I found that HBase would die after perf tests but fail to restart for mem tests. This turned out to be ZK failing to bind its port. The HBase test harness killed the HBase process with SIGTERM, which seems to prevent ZK from cleanly closing its listen socket, which then goes into TIME_WAIT and prevents the next ZK process from binding the port. To fix this, I made the test harness first try to stop HBase using the clean shutdown script provided with the HBase distro, waiting up to 20 seconds for it to finish. If it doesn't finish, the harness resorts to SIGKILL (not TERM). This approach seems to resolve the issue -- now perf and mem tests both run successfully. 16 November 2013, 06:10:52 UTC
d4974bc Adding two new Cassandra memory test subclasses 16 November 2013, 03:55:19 UTC
156c92d Increasing memory in Cassandra + HBase tests 16 November 2013, 03:54:14 UTC
372e190 Adding JUnitBenchmark env var config options 16 November 2013, 03:52:39 UTC
5f09013 Deleting chronically unmaintained External* tests 16 November 2013, 03:52:16 UTC
5aedfbe removed infinispan from titan-dist 15 November 2013, 22:04:41 UTC
211df93 removed infinispan from titan-all 15 November 2013, 21:59:21 UTC
9b59abf Reverted back to Guava cache which is slightly slower but better behaved since it does not require a separate cleanup thread. 15 November 2013, 21:08:19 UTC
back to top