neo4j-core 0.0.1-java → 0.0.2-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. data/README.rdoc +1 -1
  2. data/lib/neo4j/neo4j.rb +9 -7
  3. data/lib/neo4j-core/database.rb +2 -2
  4. data/lib/neo4j-core/index/class_methods.rb +7 -26
  5. data/lib/neo4j-core/index/index_config.rb +25 -17
  6. data/lib/neo4j-core/version.rb +1 -1
  7. metadata +2 -31
  8. data/lib/db/active_tx_log +0 -1
  9. data/lib/db/index/lucene-store.db +0 -0
  10. data/lib/db/index/lucene.log.1 +0 -0
  11. data/lib/db/index/lucene.log.active +0 -0
  12. data/lib/db/lock +0 -0
  13. data/lib/db/messages.log +0 -530
  14. data/lib/db/neostore +0 -0
  15. data/lib/db/neostore.id +0 -0
  16. data/lib/db/neostore.nodestore.db +0 -0
  17. data/lib/db/neostore.nodestore.db.id +0 -0
  18. data/lib/db/neostore.propertystore.db +0 -0
  19. data/lib/db/neostore.propertystore.db.arrays +0 -0
  20. data/lib/db/neostore.propertystore.db.arrays.id +0 -0
  21. data/lib/db/neostore.propertystore.db.id +0 -0
  22. data/lib/db/neostore.propertystore.db.index +0 -0
  23. data/lib/db/neostore.propertystore.db.index.id +0 -0
  24. data/lib/db/neostore.propertystore.db.index.keys +0 -0
  25. data/lib/db/neostore.propertystore.db.index.keys.id +0 -0
  26. data/lib/db/neostore.propertystore.db.strings +0 -0
  27. data/lib/db/neostore.propertystore.db.strings.id +0 -0
  28. data/lib/db/neostore.relationshipstore.db +0 -0
  29. data/lib/db/neostore.relationshipstore.db.id +0 -0
  30. data/lib/db/neostore.relationshiptypestore.db +0 -0
  31. data/lib/db/neostore.relationshiptypestore.db.id +0 -0
  32. data/lib/db/neostore.relationshiptypestore.db.names +0 -0
  33. data/lib/db/neostore.relationshiptypestore.db.names.id +0 -0
  34. data/lib/db/nioneo_logical.log.2 +0 -0
  35. data/lib/db/nioneo_logical.log.active +0 -0
  36. data/lib/db/tm_tx_log.1 +0 -0
data/README.rdoc CHANGED
@@ -1,4 +1,4 @@
1
- == Neo4j-core {<img src="https://secure.travis-ci.org/andreasronge/neo4j.png" />}[http://travis-ci.org/andreasronge/neo4j]
1
+ == Neo4j-core {<img src="https://secure.travis-ci.org/andreasronge/neo4j-core.png" />}[http://travis-ci.org/andreasronge/neo4j-core]
2
2
 
3
3
  This gem only contains the JRuby mapping of the Neo4j graph database.
4
4
  The neo4j.rb gem will be split up into two gems, neo4j-core and neo4j.
data/lib/neo4j/neo4j.rb CHANGED
@@ -5,10 +5,17 @@
5
5
  # The Neo4j modules is used to interact with an Neo4j Database instance.
6
6
  # You can for example start and stop an instance and list all the nodes that exist in the database.
7
7
  #
8
- # === Starting and Stopping Neo4j
8
+ # @example
9
+ # require 'neo4j'
10
+ # Neo4j::Transaction.run { Neo4j.ref_node.outgoing(:friends) << Neo4j::Node.new(:name => 'andreas')}
11
+ # Neo4j.ref_node.node(:outgoing, :friends)[:name] #=> 'andreas'
12
+ # Neo4j.query(Neo4j.ref_node){|ref| ref > ':friends' > :x; :x}
13
+ #
14
+ # ==== Notice - Starting and Stopping Neo4j
9
15
  # You don't normally need to start the Neo4j database since it will be automatically started when needed.
10
16
  # Before the database is started you should configure where the database is stored, see {Neo4j::Config]}.
11
17
  #
18
+ #
12
19
  module Neo4j
13
20
 
14
21
  # @return [String] The version of the Neo4j jar files
@@ -64,11 +71,6 @@ module Neo4j
64
71
  db
65
72
  end
66
73
 
67
- # Runs all user defined migrations.
68
- def migrate!
69
-
70
- end
71
-
72
74
  # @return [String, nil] the current storage path of a running neo4j database. If the database is not running it returns nil.
73
75
  def storage_path
74
76
  return nil unless db.running?
@@ -101,7 +103,7 @@ module Neo4j
101
103
  # q.columns.first => :n
102
104
  #
103
105
  # @see Cypher
104
- # @see {http://docs.neo4j.org/chunked/milestone/cypher-query-lang.html The Cypher Query Language Documentation}
106
+ # @see http://docs.neo4j.org/chunked/milestone/cypher-query-lang.html The Cypher Query Language Documentation
105
107
  # @note Returns a read-once only forward iterable.
106
108
  # @param params parameter for the query_dsl block
107
109
  # @return [Neo4j::Core::Cypher::ResultWrapper] a forward read once only Enumerable, containing hash values.
@@ -53,10 +53,10 @@ module Neo4j
53
53
  start_readonly_graph_db
54
54
  elsif Neo4j::Config['ha.db']
55
55
  start_ha_graph_db
56
- Neo4j.migrate!
56
+ Neo4j.migrate! if Neo4j.respond_to?(:migrate!)
57
57
  else
58
58
  start_local_graph_db
59
- Neo4j.migrate!
59
+ Neo4j.migrate! if Neo4j.respond_to?(:migrate!)
60
60
  end
61
61
  rescue
62
62
  @running = false
@@ -7,7 +7,6 @@ module Neo4j
7
7
  attr_reader :_indexer
8
8
 
9
9
 
10
- # TODO YARD
11
10
  # Sets which indexer should be used for the given node class.
12
11
  # You can share an indexer between several different classes.
13
12
  #
@@ -38,30 +37,11 @@ module Neo4j
38
37
  # end
39
38
  # end
40
39
  #
41
- # @example Using Neo4j::NodeMixin
42
- #
43
- # class Contact
44
- # include Neo4j::NodeMixin
45
- # index :name
46
- # has_one :phone
47
- # end
48
- #
49
- # class Phone
50
- # include Neo4j::NodeMixin
51
- # property :phone
52
- # node_indexer Contact # put index on the Contact class instead
53
- # index :phone
54
- # end
55
- #
56
- # # Find an contact with a phone number, this works since they share the same index
57
- # Contact.find('phone: 12345').first #=> a phone object !
58
- #
40
+ # @param [Neo4j::Core::Index::IndexConfig] config the configuration used as context for the config_dsl
59
41
  # @return [Neo4j::Core::Index::Indexer] The indexer that should be used to index the given class
60
42
  # @see Neo4j::Core::Index::IndexConfig for possible configuration values in the +config_dsl+ block
61
43
  # @yield evaluated in the a Neo4j::Core::Index::IndexConfig object to configure it.
62
- def node_indexer(&config_dsl)
63
- # TODO reuse an existing index config
64
- config = IndexConfig.new(:node)
44
+ def node_indexer(config = IndexConfig.new(:node), &config_dsl)
65
45
  config.instance_eval(&config_dsl)
66
46
  indexer(config)
67
47
  end
@@ -69,10 +49,11 @@ module Neo4j
69
49
  # Sets which indexer should be used for the given relationship class
70
50
  # Same as #node_indexer except that it indexes relationships instead of nodes.
71
51
  #
72
- # @see #node_indexer
73
- # @return [Neo4j::Core::Index::Indexer] The indexer that should be used to index the given class
74
- def rel_indexer(clazz)
75
- indexer(clazz, :rel)
52
+ # @param (see #node_indexer)
53
+ # @return (see #node_indexer)
54
+ def rel_indexer(config = IndexConfig.new(:rel), &config_dsl)
55
+ config.instance_eval(&config_dsl)
56
+ indexer(config)
76
57
  end
77
58
 
78
59
 
@@ -5,14 +5,23 @@ module Neo4j
5
5
  # Responsible for holding the configuration for one index
6
6
  # Is used in a DSL to configure the index.
7
7
  class IndexConfig
8
- attr_reader :_trigger_on, :_index_names, :entity_type
8
+ attr_reader :_trigger_on, :_index_names, :entity_type, :_index_type, :_numeric_types, :_decl_type
9
9
 
10
+ # @param [:rel, :node] entity_type the type of index
10
11
  def initialize(entity_type)
11
12
  @entity_type = entity_type
12
- @index_type = {}
13
- @numeric_types = []
13
+ @_index_type = {}
14
+ @_numeric_types = []
14
15
  @_trigger_on = {}
15
- @decl_type = {}
16
+ @_decl_type = {}
17
+ end
18
+
19
+ def inherit_from(clazz)
20
+ c = clazz._indexer.config
21
+ raise "Can't inherit from different index type #{@entity_type} != #{c.entity_type}" if @entity_type != c.entity_type
22
+ @_index_type.merge!(c._index_type)
23
+ @_numeric_types += c._numeric_types
24
+ @_decl_type.merge!(c._decl_type)
16
25
  end
17
26
 
18
27
  # Specifies which property and values the index should be triggered on.
@@ -26,7 +35,7 @@ module Neo4j
26
35
  # Used in the Index DSL.
27
36
  # @see Neo4j::Core::Index::ClassMethods#node_indexer
28
37
  def decl_type(prop_and_type_hash)
29
- merge_and_to_string(@decl_type, prop_and_type_hash)
38
+ merge_and_to_string(@_decl_type, prop_and_type_hash)
30
39
  end
31
40
 
32
41
  # Specifies an index with configuration
@@ -37,15 +46,15 @@ module Neo4j
37
46
  conf = args.last.kind_of?(Hash) ? args.pop : {}
38
47
 
39
48
  args.uniq.each do |field|
40
- @index_type[field.to_s] = conf[:type] || :exact
41
- @numeric_types << field.to_s if conf[:numeric] == true
49
+ @_index_type[field.to_s] = conf[:type] || :exact
50
+ @_numeric_types << field.to_s if conf[:numeric] == true
42
51
  end
43
52
  end
44
53
 
45
54
  # @return [Class] the specified type of the property or String
46
55
  # @see #decl_type
47
56
  def decl_type_on(prop)
48
- @decl_type[prop] || String
57
+ @_decl_type[prop] || String
49
58
  end
50
59
 
51
60
  # @return [true, false] if the props can/should trigger an index operation
@@ -73,29 +82,28 @@ module Neo4j
73
82
 
74
83
 
75
84
  def rm_index_config
76
- @index_type = {}
77
- @numeric_types = []
85
+ @_index_type = {}
86
+ @_numeric_types = []
78
87
  end
79
88
 
80
89
  def index_type(field)
81
- @index_type[field.to_s]
90
+ @_index_type[field.to_s]
82
91
  end
83
92
 
84
93
  def has_index_type?(type)
85
- @index_type.values.include?(type)
94
+ @_index_type.values.include?(type)
86
95
  end
87
96
 
88
97
  def fields
89
- @index_type.keys
98
+ @_index_type.keys
90
99
  end
91
100
 
92
101
  def index?(field)
93
- @index_type.include?(field.to_s)
102
+ @_index_type.include?(field.to_s)
94
103
  end
95
104
 
96
105
  def numeric?(field)
97
- return true if @numeric_types.include?(field)
98
- # TODO callback to numeric dsl for Neo4j::NodeMixin decl_props check
106
+ return true if @_numeric_types.include?(field)
99
107
  end
100
108
 
101
109
  private
@@ -103,7 +111,7 @@ module Neo4j
103
111
  def merge_and_to_string(existing_hash, new_hash)
104
112
  new_hash.each_pair do |k, v|
105
113
  existing_hash[k.to_s] ||= Set.new
106
- existing_hash[k.to_s].merge(v.is_a?(Array)? v : [v])
114
+ existing_hash[k.to_s].merge(v.is_a?(Array) ? v : [v])
107
115
  end
108
116
  end
109
117
  end
@@ -1,5 +1,5 @@
1
1
  module Neo4j
2
2
  module Core
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: neo4j-core
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.1
5
+ version: 0.0.2
6
6
  platform: java
7
7
  authors:
8
8
  - Andreas Ronge
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2012-03-20 00:00:00 Z
13
+ date: 2012-03-21 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: neo4j-community
@@ -74,35 +74,6 @@ files:
74
74
  - lib/neo4j-core/relationship/relationship.rb
75
75
  - lib/neo4j-core/cypher/cypher.rb
76
76
  - lib/neo4j-core/cypher/result_wrapper.rb
77
- - lib/db/neostore.relationshiptypestore.db.names
78
- - lib/db/neostore.id
79
- - lib/db/neostore.relationshiptypestore.db.names.id
80
- - lib/db/neostore.nodestore.db.id
81
- - lib/db/neostore.propertystore.db.index
82
- - lib/db/neostore.propertystore.db.strings.id
83
- - lib/db/nioneo_logical.log.active
84
- - lib/db/neostore.propertystore.db.strings
85
- - lib/db/neostore.relationshiptypestore.db.id
86
- - lib/db/neostore
87
- - lib/db/neostore.nodestore.db
88
- - lib/db/neostore.propertystore.db.index.keys.id
89
- - lib/db/neostore.propertystore.db.arrays.id
90
- - lib/db/messages.log
91
- - lib/db/neostore.relationshipstore.db.id
92
- - lib/db/neostore.propertystore.db.arrays
93
- - lib/db/neostore.relationshipstore.db
94
- - lib/db/neostore.propertystore.db.index.id
95
- - lib/db/neostore.propertystore.db.id
96
- - lib/db/neostore.propertystore.db
97
- - lib/db/tm_tx_log.1
98
- - lib/db/nioneo_logical.log.2
99
- - lib/db/neostore.relationshiptypestore.db
100
- - lib/db/lock
101
- - lib/db/active_tx_log
102
- - lib/db/neostore.propertystore.db.index.keys
103
- - lib/db/index/lucene-store.db
104
- - lib/db/index/lucene.log.1
105
- - lib/db/index/lucene.log.active
106
77
  - config/neo4j/config.yml
107
78
  - README.rdoc
108
79
  - Gemfile
data/lib/db/active_tx_log DELETED
@@ -1 +0,0 @@
1
- tm_tx_log.1
Binary file
Binary file
Binary file
data/lib/db/lock DELETED
File without changes
data/lib/db/messages.log DELETED
@@ -1,530 +0,0 @@
1
- 2012-03-16 12:35:59.121+0000: WARNING! Deprecated configuration options used. See manual for details
2
- 2012-03-16 12:35:59.125+0000: enable_online_backup has been replaced with online_backup_enabled and online_backup_port
3
- 2012-03-16 12:35:59.204+0000: Creating new db @ /home/andreas/projects/neo4j-core/lib/db/neostore
4
- 2012-03-16 12:35:59.562+0000: Opened [/home/andreas/projects/neo4j-core/lib/db/nioneo_logical.log.1] clean empty log, version=0, lastTxId=1
5
- 2012-03-16 12:35:59.575+0000: TM new log: tm_tx_log.1
6
- 2012-03-16 12:35:59.645+0000: Opened [/home/andreas/projects/neo4j-core/lib/db/index/lucene.log.1] clean empty log, version=0, lastTxId=1
7
- 2012-03-16 12:35:59.654+0000: --- STARTUP diagnostics START ---
8
- 2012-03-16 12:35:59.655+0000: Neo4j Kernel properties:
9
- store_dir=/home/andreas/projects/neo4j-core/lib/db
10
- logical_log=/home/andreas/projects/neo4j-core/lib/db/nioneo_logical.log
11
- enable_rules=YES
12
- min_node_cache_size=0
13
- neostore.relationshipstore.db.mapped_memory=50M
14
- node_auto_indexing=false
15
- neostore.nodestore.db.mapped_memory=25M
16
- max_relationship_cache_size=3500
17
- ha.db=NO
18
- min_relationship_cache_size=0
19
- use_adaptive_cache=YES
20
- adaptive_cache_heap_ratio=0.77
21
- identity_map=NO
22
- adaptive_cache_manager_decrease_ratio=1.15
23
- ha.coordinators=localhost:2181,localhost:2182,localhost:2183
24
- timestamps=YES
25
- use_memory_mapped_buffers=true
26
- neostore.propertystore.db.index.keys.mapped_memory=1M
27
- max_node_cache_size=1500
28
- neostore.propertystore.db.strings.mapped_memory=130M
29
- neostore.propertystore.db.arrays.mapped_memory=130M
30
- ha.server_id=2
31
- adaptive_cache_worker_sleep_time=3000
32
- neo_store=/home/andreas/projects/neo4j-core/lib/db/neostore
33
- neostore.propertystore.db.index.mapped_memory=1M
34
- adaptive_cache_manager_increase_ratio=1.1
35
- enable_remote_shell=port=9332
36
- neostore.propertystore.db.mapped_memory=90M
37
- relationship_auto_indexing=false
38
- storage_path=db
39
- ha.server=localhost:6002
40
- migration_thread=NO
41
- 2012-03-16 12:35:59.659+0000: Diagnostics providers:
42
- org.neo4j.kernel.Config
43
- org.neo4j.kernel.info.DiagnosticsManager
44
- SYSTEM_MEMORY
45
- JAVA_MEMORY
46
- OPERATING_SYSTEM
47
- JAVA_VIRTUAL_MACHINE
48
- CLASSPATH
49
- LIBRARY_PATH
50
- SYSTEM_PROPERTIES
51
- LINUX_SCHEDULERS
52
- 2012-03-16 12:35:59.659+0000: System memory information:
53
- Total Physical memory: 3.87 GB
54
- Free Physical memory: 315.98 MB
55
- Committed virtual memory: 969.01 MB
56
- Total swap space: 4.88 GB
57
- Free swap space: 4.51 GB
58
- 2012-03-16 12:35:59.662+0000: JVM memory information:
59
- Free memory: 45.20 MB
60
- Total memory: 59.31 MB
61
- Max memory: 444.50 MB
62
- Garbage Collector: PS Scavenge: [PS Eden Space, PS Survivor Space]
63
- Garbage Collector: PS MarkSweep: [PS Eden Space, PS Survivor Space, PS Old Gen, PS Perm Gen]
64
- Memory Pool: Code Cache (Non-heap memory): committed=2.44 MB, used=1.54 MB, max=48.00 MB, threshold=0.00 B
65
- Memory Pool: PS Eden Space (Heap memory): committed=15.50 MB, used=2.39 MB, max=157.75 MB, threshold=?
66
- Memory Pool: PS Survivor Space (Heap memory): committed=2.56 MB, used=2.56 MB, max=2.56 MB, threshold=?
67
- Memory Pool: PS Old Gen (Heap memory): committed=41.25 MB, used=9.16 MB, max=333.38 MB, threshold=0.00 B
68
- Memory Pool: PS Perm Gen (Non-heap memory): committed=24.50 MB, used=24.35 MB, max=166.00 MB, threshold=0.00 B
69
- 2012-03-16 12:35:59.667+0000: Operating system information:
70
- Operating System: Linux; version: 3.0.0-16-generic; arch: amd64; cpus: 2
71
- Max number of file descriptors: 4096
72
- Number of open file descriptors: 57
73
- Process id: 17941@andreas-dell
74
- Byte order: LITTLE_ENDIAN
75
- 2012-03-16 12:35:59.671+0000: JVM information:
76
- VM Name: OpenJDK 64-Bit Server VM
77
- VM Vendor: Oracle Corporation
78
- VM Version: 21.0-b17
79
- JIT compiler: HotSpot 64-Bit Tiered Compilers
80
- VM Arguments: [-Djdk.home=, -Djruby.home=/home/andreas/.rvm/rubies/jruby-1.6.7, -Djruby.script=jruby, -Djruby.shell=/bin/sh, -Djffi.boot.library.path=/home/andreas/.rvm/rubies/jruby-1.6.7/lib/native/ppc-Linux:/home/andreas/.rvm/rubies/jruby-1.6.7/lib/native/x86_64-Linux:/home/andreas/.rvm/rubies/jruby-1.6.7/lib/native/i386-Linux, -Xmx500m, -Xss2048k, -Djruby.memory.max=500m, -Djruby.stack.max=2048k, -Xbootclasspath/a:/home/andreas/.rvm/rubies/jruby-1.6.7/lib/jruby.jar]
81
- 2012-03-16 12:35:59.671+0000: Java classpath:
82
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/server-api-1.7.M01.jar
83
- [loader.2] file:/usr/lib/jvm/java-7-openjdk-common/jre/lib/ext/sunpkcs11.jar
84
- [bootstrap] /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/plugin.jar
85
- [bootstrap] /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/jce.jar
86
- [bootstrap] /home/andreas/.rvm/rubies/jruby-1.6.7/lib/jruby.jar
87
- [bootstrap] /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/charsets.jar
88
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/neo4j-graph-matching-1.7.M01.jar
89
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/neo4j-community-1.7.M01.jar
90
- [loader.2] file:/usr/lib/jvm/java-7-openjdk-common/jre/lib/ext/localedata.jar
91
- [bootstrap] /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/jsse.jar
92
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/lucene-core-3.5.0.jar
93
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/scala-library-2.9.0-1.jar
94
- [bootstrap] /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/sunrsasign.jar
95
- [bootstrap] /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/rhino.jar
96
- [loader.2] file:/usr/lib/jvm/java-7-openjdk-common/jre/lib/ext/dnsns.jar
97
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/org.apache.servicemix.bundles.jline-0.9.94_1.jar
98
- [loader.2] file:/usr/lib/x86_64-linux-gnu/jni/libjava-access-bridge-jni.so.0.0.0
99
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/neo4j-lucene-index-1.7.M01.jar
100
- [classpath + loader.1] file:/home/andreas/projects/neo4j-core/lib/
101
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/neo4j-jmx-1.7.M01.jar
102
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/neo4j-shell-1.7.M01.jar
103
- [loader.2] file:/usr/lib/jvm/java-7-openjdk-common/jre/lib/ext/sunjce_provider.jar
104
- [bootstrap] /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/netx.jar
105
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/neo4j-udc-1.7.M01.jar
106
- [bootstrap] /usr/lib/jvm/java-7-openjdk-amd64/jre/classes
107
- [loader.2] file:/usr/share/java/gnome-java-bridge.jar
108
- [bootstrap] /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/rt.jar
109
- [loader.2] file:/usr/lib/jvm/java-7-openjdk-common/jre/lib/ext/pulse-java.jar
110
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/geronimo-jta_1.1_spec-1.1.1.jar
111
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/neo4j-cypher-1.7.M01.jar
112
- [bootstrap] /usr/lib/jvm/java-7-openjdk-common/jre/lib/resources.jar
113
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/neo4j-kernel-1.7.M01.jar
114
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/neo4j-graph-algo-1.7.M01.jar
115
- [loader.2] file:/usr/lib/jvm/java-7-openjdk-common/jre/lib/ext/zipfs.jar
116
- 2012-03-16 12:35:59.673+0000: Library path:
117
- /usr/java/packages/lib/amd64
118
- /usr/lib/x86_64-linux-gnu/jni
119
- /lib/x86_64-linux-gnu
120
- /usr/lib/x86_64-linux-gnu
121
- /usr/lib/jni
122
- /lib
123
- /usr/lib
124
- 2012-03-16 12:35:59.673+0000: System.properties:
125
- jruby.home = /home/andreas/.rvm/rubies/jruby-1.6.7
126
- sun.boot.library.path = /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64
127
- path.separator = :
128
- file.encoding.pkg = sun.io
129
- user.country = US
130
- sun.java.launcher = SUN_STANDARD
131
- sun.os.patch.level = unknown
132
- user.dir = /home/andreas/projects/neo4j-core/lib
133
- jdk.home =
134
- sun.jnu.encoding = UTF-8
135
- jruby.memory.max = 500m
136
- sun.management.compiler = HotSpot 64-Bit Tiered Compilers
137
- jffi.boot.library.path = /home/andreas/.rvm/rubies/jruby-1.6.7/lib/native/ppc-Linux:/home/andreas/.rvm/rubies/jruby-1.6.7/lib/native/x86_64-Linux:/home/andreas/.rvm/rubies/jruby-1.6.7/lib/native/i386-Linux
138
- user.home = /home/andreas
139
- user.timezone = Europe/Stockholm
140
- file.encoding = UTF-8
141
- jruby.stack.max = 2048k
142
- jruby.script = jruby
143
- user.name = andreas
144
- jruby.shell = /bin/sh
145
- sun.java.command = org/jruby/Main /home/andreas/.rvm/rubies/jruby-1.6.7/bin/irb
146
- sun.arch.data.model = 64
147
- user.language = en
148
- awt.toolkit = sun.awt.X11.XToolkit
149
- file.separator = /
150
- sun.io.unicode.encoding = UnicodeLittle
151
- sun.cpu.endian = little
152
- sun.desktop = gnome
153
- sun.cpu.isalist =
154
- 2012-03-16 12:35:59.673+0000: Linux scheduler information:
155
- none
156
- none
157
- none
158
- none
159
- none
160
- none
161
- none
162
- none
163
- none
164
- none
165
- none
166
- none
167
- none
168
- none
169
- none
170
- none
171
- none
172
- none
173
- none
174
- none
175
- none
176
- none
177
- none
178
- none
179
- noop deadline [cfq]
180
- noop deadline [cfq]
181
- 2012-03-16 12:35:59.677+0000: --- STARTUP diagnostics END ---
182
- 2012-03-16 12:35:59.748+0000: Extension org.neo4j.kernel.KernelExtension[kernel jmx] loaded ok
183
- 2012-03-16 12:35:59.751+0000: Extension org.neo4j.kernel.KernelExtension[kernel udc] loaded ok
184
- 2012-03-16 12:35:59.963+0000: Extension org.neo4j.kernel.KernelExtension[shell] loaded ok
185
- 2012-03-16 12:35:59.965+0000: --- STARTUP diagnostics for KernelDiagnostics:Versions START ---
186
- 2012-03-16 12:35:59.965+0000: Graph Database: org.neo4j.kernel.EmbeddedGraphDatabase StoreId[time:1331901359205, id:-7434371384886611208, store version: 13561656364791302]
187
- 2012-03-16 12:35:59.965+0000: Kernel version: Neo4j - Graph Database Kernel 1.7.M01
188
- 2012-03-16 12:35:59.965+0000: Neo4j component versions:
189
- 2012-03-16 12:35:59.966+0000: Neo4j - Graph Database Kernel 1.7.M01
190
- 2012-03-16 12:35:59.966+0000: --- STARTUP diagnostics for KernelDiagnostics:Versions END ---
191
- 2012-03-16 12:35:59.968+0000: --- STARTUP diagnostics for NEO_STORE_VERSIONS START ---
192
- 2012-03-16 12:35:59.968+0000: Store versions:
193
- Store versions:
194
- NeoStore v0.A.0
195
- NodeStore v0.A.0
196
- RelationshipStore v0.A.0
197
- RelationshipTypeStore v0.A.0
198
- PropertyStore v0.A.0
199
- PropertyIndexStore v0.A.0
200
- StringPropertyStore v0.A.0
201
- ArrayPropertyStore v0.A.0
202
- 2012-03-16 12:35:59.968+0000: --- STARTUP diagnostics for NEO_STORE_VERSIONS END ---
203
- 2012-03-16 12:35:59.968+0000: --- STARTUP diagnostics for NEO_STORE_ID_USAGE START ---
204
- 2012-03-16 12:35:59.968+0000: Id usage:
205
- Id usage:
206
- NodeStore: used=1 high=0
207
- RelationshipStore: used=0 high=-1
208
- RelationshipTypeStore: used=0 high=-1
209
- PropertyStore: used=0 high=-1
210
- PropertyIndexStore: used=0 high=-1
211
- StringPropertyStore: used=1 high=0
212
- ArrayPropertyStore: used=1 high=0
213
- 2012-03-16 12:35:59.969+0000: --- STARTUP diagnostics for NEO_STORE_ID_USAGE END ---
214
- 2012-03-16 12:35:59.969+0000: --- STARTUP diagnostics for KernelDiagnostics:StoreFiles START ---
215
- 2012-03-16 12:35:59.969+0000: Storage files:
216
- neostore.relationshiptypestore.db.names: 38.00 B
217
- neostore.id: 9.00 B
218
- neostore.relationshiptypestore.db.names.id: 9.00 B
219
- neostore.nodestore.db.id: 9.00 B
220
- nioneo_logical.log.1: 16.00 B
221
- neostore.propertystore.db.index: 0.00 B
222
- neostore.propertystore.db.strings.id: 9.00 B
223
- nioneo_logical.log.active: 4.00 B
224
- neostore.propertystore.db.strings: 128.00 B
225
- neostore.relationshiptypestore.db.id: 9.00 B
226
- neostore: 54.00 B
227
- neostore.nodestore.db: 9.00 B
228
- neostore.propertystore.db.index.keys.id: 9.00 B
229
- neostore.propertystore.db.arrays.id: 9.00 B
230
- messages.log: 11.25 kB
231
- neostore.relationshipstore.db.id: 9.00 B
232
- neostore.propertystore.db.arrays: 128.00 B
233
- neostore.relationshipstore.db: 0.00 B
234
- neostore.propertystore.db.index.id: 9.00 B
235
- neostore.propertystore.db.id: 9.00 B
236
- neostore.propertystore.db: 0.00 B
237
- index:
238
- lucene-store.db: 40.00 B
239
- lucene.log.1: 16.00 B
240
- lucene.log.active: 4.00 B
241
- - Total: 60.00 B
242
- tm_tx_log.1: 0.00 B
243
- neostore.relationshiptypestore.db: 0.00 B
244
- lock: 0.00 B
245
- active_tx_log: 11.00 B
246
- neostore.propertystore.db.index.keys: 38.00 B
247
- 2012-03-19 07:46:52.603+0000: WARNING! Deprecated configuration options used. See manual for details
248
- 2012-03-19 07:46:52.606+0000: enable_online_backup has been replaced with online_backup_enabled and online_backup_port
249
- 2012-03-19 07:46:52.709+0000: /home/andreas/projects/neo4j-core/lib/db/neostore.relationshiptypestore.db.names non clean shutdown detected
250
- 2012-03-19 07:46:52.720+0000: /home/andreas/projects/neo4j-core/lib/db/neostore.relationshiptypestore.db non clean shutdown detected
251
- 2012-03-19 07:46:52.721+0000: /home/andreas/projects/neo4j-core/lib/db/neostore.propertystore.db.strings non clean shutdown detected
252
- 2012-03-19 07:46:52.722+0000: /home/andreas/projects/neo4j-core/lib/db/neostore.propertystore.db.index.keys non clean shutdown detected
253
- 2012-03-19 07:46:52.725+0000: /home/andreas/projects/neo4j-core/lib/db/neostore.propertystore.db.index non clean shutdown detected
254
- 2012-03-19 07:46:52.728+0000: /home/andreas/projects/neo4j-core/lib/db/neostore.propertystore.db.arrays non clean shutdown detected
255
- 2012-03-19 07:46:52.738+0000: /home/andreas/projects/neo4j-core/lib/db/neostore.propertystore.db non clean shutdown detected
256
- 2012-03-19 07:46:52.742+0000: /home/andreas/projects/neo4j-core/lib/db/neostore.relationshipstore.db non clean shutdown detected
257
- 2012-03-19 07:46:52.746+0000: /home/andreas/projects/neo4j-core/lib/db/neostore.nodestore.db non clean shutdown detected
258
- 2012-03-19 07:46:52.748+0000: /home/andreas/projects/neo4j-core/lib/db/neostore non clean shutdown detected
259
- 2012-03-19 07:46:52.762+0000: Non clean shutdown detected on log [/home/andreas/projects/neo4j-core/lib/db/nioneo_logical.log.1]. Recovery started ...
260
- 2012-03-19 07:46:52.765+0000: [/home/andreas/projects/neo4j-core/lib/db/nioneo_logical.log.1] logVersion=0 with committed tx=1
261
- 2012-03-19 07:46:52.810+0000: [/home/andreas/projects/neo4j-core/lib/db/nioneo_logical.log.1] entries found=3 lastEntryPos=142
262
- 2012-03-19 07:46:52.810+0000: Internal recovery completed, scanned 3 log entries. Recovered 1 transactions. Last tx recovered: 2
263
- 2012-03-19 07:46:52.810+0000: XaResourceManager[/home/andreas/projects/neo4j-core/lib/db/nioneo_logical.log] sorting 1 xids
264
- 2012-03-19 07:46:52.811+0000: XaResourceManager[/home/andreas/projects/neo4j-core/lib/db/nioneo_logical.log] checkRecoveryComplete 0 xids
265
- 2012-03-19 07:46:52.833+0000: /home/andreas/projects/neo4j-core/lib/db/neostore.relationshiptypestore.db.names rebuild id generator, highId=2 defragged count=0
266
- 2012-03-19 07:46:52.850+0000: /home/andreas/projects/neo4j-core/lib/db/neostore.propertystore.db.index.keys rebuild id generator, highId=1 defragged count=0
267
- 2012-03-19 07:46:52.860+0000: /home/andreas/projects/neo4j-core/lib/db/neostore.propertystore.db.index rebuild id generator, highId=1 defragged count=0
268
- 2012-03-19 07:46:52.869+0000: /home/andreas/projects/neo4j-core/lib/db/neostore.propertystore.db.strings rebuild id generator, highId=1 defragged count=0
269
- 2012-03-19 07:46:52.879+0000: /home/andreas/projects/neo4j-core/lib/db/neostore.propertystore.db.arrays rebuild id generator, highId=1 defragged count=0
270
- 2012-03-19 07:46:52.889+0000: /home/andreas/projects/neo4j-core/lib/db/neostore.propertystore.db rebuild id generator, highId=1 defragged count=0
271
- 2012-03-19 07:46:52.899+0000: /home/andreas/projects/neo4j-core/lib/db/neostore.relationshipstore.db rebuild id generator, highId=1 defragged count=0
272
- 2012-03-19 07:46:52.951+0000: /home/andreas/projects/neo4j-core/lib/db/neostore.nodestore.db rebuild id generator, highId=1 defragged count=0
273
- 2012-03-19 07:46:52.961+0000: /home/andreas/projects/neo4j-core/lib/db/neostore rebuild id generator, highId=6 defragged count=0
274
- 2012-03-19 07:46:52.965+0000: XaResourceManager[/home/andreas/projects/neo4j-core/lib/db/nioneo_logical.log] recovery completed.
275
- 2012-03-19 07:46:52.965+0000: Recovery on log [/home/andreas/projects/neo4j-core/lib/db/nioneo_logical.log.1] completed.
276
- 2012-03-19 07:46:52.968+0000: TM opening log: /home/andreas/projects/neo4j-core/lib/db/tm_tx_log.1
277
- 2012-03-19 07:46:53.020+0000: Non clean shutdown detected on log [/home/andreas/projects/neo4j-core/lib/db/index/lucene.log.1]. Recovery started ...
278
- 2012-03-19 07:46:53.021+0000: [/home/andreas/projects/neo4j-core/lib/db/index/lucene.log.1] logVersion=0 with committed tx=1
279
- 2012-03-19 07:46:53.021+0000: [/home/andreas/projects/neo4j-core/lib/db/index/lucene.log.1] entries found=0 lastEntryPos=16
280
- 2012-03-19 07:46:53.021+0000: Internal recovery completed, scanned 0 log entries. Recovered 0 transactions. Last tx recovered: -1
281
- 2012-03-19 07:46:53.021+0000: XaResourceManager[/home/andreas/projects/neo4j-core/lib/db/index/lucene.log] sorting 0 xids
282
- 2012-03-19 07:46:53.021+0000: XaResourceManager[/home/andreas/projects/neo4j-core/lib/db/index/lucene.log] checkRecoveryComplete 0 xids
283
- 2012-03-19 07:46:53.021+0000: XaResourceManager[/home/andreas/projects/neo4j-core/lib/db/index/lucene.log] recovery completed.
284
- 2012-03-19 07:46:53.021+0000: Recovery on log [/home/andreas/projects/neo4j-core/lib/db/index/lucene.log.1] completed.
285
- 2012-03-19 07:46:53.024+0000: --- STARTUP diagnostics START ---
286
- 2012-03-19 07:46:53.025+0000: Neo4j Kernel properties:
287
- store_dir=/home/andreas/projects/neo4j-core/lib/db
288
- logical_log=/home/andreas/projects/neo4j-core/lib/db/nioneo_logical.log
289
- enable_rules=YES
290
- min_node_cache_size=0
291
- neostore.relationshipstore.db.mapped_memory=50M
292
- node_auto_indexing=false
293
- neostore.nodestore.db.mapped_memory=25M
294
- max_relationship_cache_size=3500
295
- ha.db=NO
296
- min_relationship_cache_size=0
297
- use_adaptive_cache=YES
298
- adaptive_cache_heap_ratio=0.77
299
- identity_map=NO
300
- adaptive_cache_manager_decrease_ratio=1.15
301
- ha.coordinators=localhost:2181,localhost:2182,localhost:2183
302
- timestamps=YES
303
- use_memory_mapped_buffers=true
304
- neostore.propertystore.db.index.keys.mapped_memory=1M
305
- max_node_cache_size=1500
306
- neostore.propertystore.db.strings.mapped_memory=130M
307
- neostore.propertystore.db.arrays.mapped_memory=130M
308
- ha.server_id=2
309
- adaptive_cache_worker_sleep_time=3000
310
- neo_store=/home/andreas/projects/neo4j-core/lib/db/neostore
311
- neostore.propertystore.db.index.mapped_memory=1M
312
- adaptive_cache_manager_increase_ratio=1.1
313
- enable_remote_shell=port=9332
314
- neostore.propertystore.db.mapped_memory=90M
315
- relationship_auto_indexing=false
316
- storage_path=db
317
- ha.server=localhost:6002
318
- migration_thread=NO
319
- 2012-03-19 07:46:53.030+0000: Diagnostics providers:
320
- org.neo4j.kernel.Config
321
- org.neo4j.kernel.info.DiagnosticsManager
322
- SYSTEM_MEMORY
323
- JAVA_MEMORY
324
- OPERATING_SYSTEM
325
- JAVA_VIRTUAL_MACHINE
326
- CLASSPATH
327
- LIBRARY_PATH
328
- SYSTEM_PROPERTIES
329
- LINUX_SCHEDULERS
330
- 2012-03-19 07:46:53.030+0000: System memory information:
331
- Total Physical memory: 3.87 GB
332
- Free Physical memory: 1.32 GB
333
- Committed virtual memory: 904.82 MB
334
- Total swap space: 4.88 GB
335
- Free swap space: 4.27 GB
336
- 2012-03-19 07:46:53.033+0000: JVM memory information:
337
- Free memory: 42.29 MB
338
- Total memory: 59.31 MB
339
- Max memory: 444.50 MB
340
- Garbage Collector: PS Scavenge: [PS Eden Space, PS Survivor Space]
341
- Garbage Collector: PS MarkSweep: [PS Eden Space, PS Survivor Space, PS Old Gen, PS Perm Gen]
342
- Memory Pool: Code Cache (Non-heap memory): committed=2.44 MB, used=1.41 MB, max=48.00 MB, threshold=0.00 B
343
- Memory Pool: PS Eden Space (Heap memory): committed=15.50 MB, used=5.22 MB, max=157.69 MB, threshold=?
344
- Memory Pool: PS Survivor Space (Heap memory): committed=2.56 MB, used=2.53 MB, max=2.56 MB, threshold=?
345
- Memory Pool: PS Old Gen (Heap memory): committed=41.25 MB, used=9.27 MB, max=333.38 MB, threshold=0.00 B
346
- Memory Pool: PS Perm Gen (Non-heap memory): committed=24.69 MB, used=24.54 MB, max=166.00 MB, threshold=0.00 B
347
- 2012-03-19 07:46:53.041+0000: Operating system information:
348
- Operating System: Linux; version: 3.0.0-16-generic; arch: amd64; cpus: 2
349
- Max number of file descriptors: 4096
350
- Number of open file descriptors: 58
351
- Process id: 14472@andreas-dell
352
- Byte order: LITTLE_ENDIAN
353
- 2012-03-19 07:46:53.045+0000: JVM information:
354
- VM Name: OpenJDK 64-Bit Server VM
355
- VM Vendor: Oracle Corporation
356
- VM Version: 21.0-b17
357
- JIT compiler: HotSpot 64-Bit Tiered Compilers
358
- VM Arguments: [-Djdk.home=, -Djruby.home=/home/andreas/.rvm/rubies/jruby-1.6.7, -Djruby.script=jruby, -Djruby.shell=/bin/sh, -Djffi.boot.library.path=/home/andreas/.rvm/rubies/jruby-1.6.7/lib/native/ppc-Linux:/home/andreas/.rvm/rubies/jruby-1.6.7/lib/native/x86_64-Linux:/home/andreas/.rvm/rubies/jruby-1.6.7/lib/native/i386-Linux, -Xmx500m, -Xss2048k, -Djruby.memory.max=500m, -Djruby.stack.max=2048k, -Xbootclasspath/a:/home/andreas/.rvm/rubies/jruby-1.6.7/lib/jruby.jar]
359
- 2012-03-19 07:46:53.046+0000: Java classpath:
360
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/server-api-1.7.M01.jar
361
- [loader.2] file:/usr/lib/jvm/java-7-openjdk-common/jre/lib/ext/sunpkcs11.jar
362
- [bootstrap] /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/plugin.jar
363
- [bootstrap] /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/jce.jar
364
- [bootstrap] /home/andreas/.rvm/rubies/jruby-1.6.7/lib/jruby.jar
365
- [bootstrap] /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/charsets.jar
366
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/neo4j-graph-matching-1.7.M01.jar
367
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/neo4j-community-1.7.M01.jar
368
- [loader.2] file:/usr/lib/jvm/java-7-openjdk-common/jre/lib/ext/localedata.jar
369
- [bootstrap] /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/jsse.jar
370
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/lucene-core-3.5.0.jar
371
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/scala-library-2.9.0-1.jar
372
- [bootstrap] /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/sunrsasign.jar
373
- [bootstrap] /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/rhino.jar
374
- [loader.2] file:/usr/lib/jvm/java-7-openjdk-common/jre/lib/ext/dnsns.jar
375
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/org.apache.servicemix.bundles.jline-0.9.94_1.jar
376
- [loader.2] file:/usr/lib/x86_64-linux-gnu/jni/libjava-access-bridge-jni.so.0.0.0
377
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/neo4j-lucene-index-1.7.M01.jar
378
- [classpath + loader.1] file:/home/andreas/projects/neo4j-core/lib/
379
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/neo4j-jmx-1.7.M01.jar
380
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/neo4j-shell-1.7.M01.jar
381
- [loader.2] file:/usr/lib/jvm/java-7-openjdk-common/jre/lib/ext/sunjce_provider.jar
382
- [bootstrap] /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/netx.jar
383
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/neo4j-udc-1.7.M01.jar
384
- [bootstrap] /usr/lib/jvm/java-7-openjdk-amd64/jre/classes
385
- [loader.2] file:/usr/share/java/gnome-java-bridge.jar
386
- [bootstrap] /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/rt.jar
387
- [loader.2] file:/usr/lib/jvm/java-7-openjdk-common/jre/lib/ext/pulse-java.jar
388
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/geronimo-jta_1.1_spec-1.1.1.jar
389
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/neo4j-cypher-1.7.M01.jar
390
- [bootstrap] /usr/lib/jvm/java-7-openjdk-common/jre/lib/resources.jar
391
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/neo4j-kernel-1.7.M01.jar
392
- [loader.0] file:/home/andreas/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.7.0.alpha.1-java/lib/neo4j-community/jars/neo4j-graph-algo-1.7.M01.jar
393
- [loader.2] file:/usr/lib/jvm/java-7-openjdk-common/jre/lib/ext/zipfs.jar
394
- 2012-03-19 07:46:53.047+0000: Library path:
395
- /usr/java/packages/lib/amd64
396
- /usr/lib/x86_64-linux-gnu/jni
397
- /lib/x86_64-linux-gnu
398
- /usr/lib/x86_64-linux-gnu
399
- /usr/lib/jni
400
- /lib
401
- /usr/lib
402
- 2012-03-19 07:46:53.049+0000: System.properties:
403
- jruby.home = /home/andreas/.rvm/rubies/jruby-1.6.7
404
- sun.boot.library.path = /usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64
405
- path.separator = :
406
- file.encoding.pkg = sun.io
407
- user.country = US
408
- sun.java.launcher = SUN_STANDARD
409
- sun.os.patch.level = unknown
410
- user.dir = /home/andreas/projects/neo4j-core/lib
411
- jdk.home =
412
- sun.jnu.encoding = UTF-8
413
- jruby.memory.max = 500m
414
- sun.management.compiler = HotSpot 64-Bit Tiered Compilers
415
- jffi.boot.library.path = /home/andreas/.rvm/rubies/jruby-1.6.7/lib/native/ppc-Linux:/home/andreas/.rvm/rubies/jruby-1.6.7/lib/native/x86_64-Linux:/home/andreas/.rvm/rubies/jruby-1.6.7/lib/native/i386-Linux
416
- user.home = /home/andreas
417
- user.timezone = Europe/Stockholm
418
- file.encoding = UTF-8
419
- jruby.stack.max = 2048k
420
- jruby.script = jruby
421
- user.name = andreas
422
- jruby.shell = /bin/sh
423
- sun.java.command = org/jruby/Main /home/andreas/.rvm/rubies/jruby-1.6.7/bin/irb
424
- sun.arch.data.model = 64
425
- user.language = en
426
- awt.toolkit = sun.awt.X11.XToolkit
427
- file.separator = /
428
- sun.io.unicode.encoding = UnicodeLittle
429
- sun.cpu.endian = little
430
- sun.desktop = gnome
431
- sun.cpu.isalist =
432
- 2012-03-19 07:46:53.050+0000: Linux scheduler information:
433
- none
434
- none
435
- none
436
- none
437
- none
438
- none
439
- none
440
- none
441
- none
442
- none
443
- none
444
- none
445
- none
446
- none
447
- none
448
- none
449
- none
450
- none
451
- none
452
- none
453
- none
454
- none
455
- none
456
- none
457
- noop deadline [cfq]
458
- noop deadline [cfq]
459
- 2012-03-19 07:46:53.053+0000: --- STARTUP diagnostics END ---
460
- 2012-03-19 07:46:53.056+0000: TM non resolved transactions found in /home/andreas/projects/neo4j-core/lib/db/tm_tx_log.1
461
- 2012-03-19 07:46:53.060+0000: TM: no match found for in total 1 transaction that should have been rolled back
462
- 2012-03-19 07:46:53.072+0000: Rotating [/home/andreas/projects/neo4j-core/lib/db/nioneo_logical.log.1] @ version=0 to /home/andreas/projects/neo4j-core/lib/db/nioneo_logical.log.2 from position 147
463
- 2012-03-19 07:46:53.082+0000: Rotate: old log scanned, newLog @ pos=16
464
- 2012-03-19 07:46:53.086+0000: Log rotated, newLog @ pos=16, version 1 and last tx 2
465
- 2012-03-19 07:46:53.088+0000: Recovery completed, all transactions have been resolved to a consistent state.
466
- 2012-03-19 07:46:53.184+0000: Extension org.neo4j.kernel.KernelExtension[kernel jmx] loaded ok
467
- 2012-03-19 07:46:53.188+0000: Extension org.neo4j.kernel.KernelExtension[kernel udc] loaded ok
468
- 2012-03-19 07:46:53.419+0000: Extension org.neo4j.kernel.KernelExtension[shell] loaded ok
469
- 2012-03-19 07:46:53.422+0000: --- STARTUP diagnostics for KernelDiagnostics:Versions START ---
470
- 2012-03-19 07:46:53.422+0000: Graph Database: org.neo4j.kernel.EmbeddedGraphDatabase StoreId[time:1331901359205, id:-7434371384886611208, store version: 13561656364791302]
471
- 2012-03-19 07:46:53.422+0000: Kernel version: Neo4j - Graph Database Kernel 1.7.M01
472
- 2012-03-19 07:46:53.422+0000: Neo4j component versions:
473
- 2012-03-19 07:46:53.422+0000: Neo4j - Graph Database Kernel 1.7.M01
474
- 2012-03-19 07:46:53.422+0000: --- STARTUP diagnostics for KernelDiagnostics:Versions END ---
475
- 2012-03-19 07:46:53.424+0000: --- STARTUP diagnostics for NEO_STORE_VERSIONS START ---
476
- 2012-03-19 07:46:53.425+0000: Store versions:
477
- Store versions:
478
- NeoStore v0.A.0
479
- NodeStore v0.A.0
480
- RelationshipStore v0.A.0
481
- RelationshipTypeStore v0.A.0
482
- PropertyStore v0.A.0
483
- PropertyIndexStore v0.A.0
484
- StringPropertyStore v0.A.0
485
- ArrayPropertyStore v0.A.0
486
- 2012-03-19 07:46:53.425+0000: --- STARTUP diagnostics for NEO_STORE_VERSIONS END ---
487
- 2012-03-19 07:46:53.425+0000: --- STARTUP diagnostics for NEO_STORE_ID_USAGE START ---
488
- 2012-03-19 07:46:53.425+0000: Id usage:
489
- Id usage:
490
- NodeStore: used=1 high=0
491
- RelationshipStore: used=1 high=0
492
- RelationshipTypeStore: used=1 high=0
493
- PropertyStore: used=1 high=0
494
- PropertyIndexStore: used=1 high=0
495
- StringPropertyStore: used=1 high=0
496
- ArrayPropertyStore: used=1 high=0
497
- 2012-03-19 07:46:53.425+0000: --- STARTUP diagnostics for NEO_STORE_ID_USAGE END ---
498
- 2012-03-19 07:46:53.426+0000: --- STARTUP diagnostics for KernelDiagnostics:StoreFiles START ---
499
- 2012-03-19 07:46:53.426+0000: Storage files:
500
- neostore.relationshiptypestore.db.names: 76.00 B
501
- neostore.id: 9.00 B
502
- neostore.relationshiptypestore.db.names.id: 9.00 B
503
- neostore.nodestore.db.id: 9.00 B
504
- neostore.propertystore.db.index: 10.24 kB
505
- neostore.propertystore.db.strings.id: 9.00 B
506
- nioneo_logical.log.active: 4.00 B
507
- neostore.propertystore.db.strings: 128.00 B
508
- neostore.relationshiptypestore.db.id: 9.00 B
509
- neostore: 54.00 B
510
- neostore.nodestore.db: 25.59 kB
511
- neostore.propertystore.db.index.keys.id: 9.00 B
512
- neostore.propertystore.db.arrays.id: 9.00 B
513
- messages.log: 28.79 kB
514
- neostore.relationshipstore.db.id: 9.00 B
515
- neostore.propertystore.db.arrays: 128.00 B
516
- neostore.relationshipstore.db: 0.00 B
517
- neostore.propertystore.db.index.id: 9.00 B
518
- neostore.propertystore.db.id: 9.00 B
519
- neostore.propertystore.db: 0.00 B
520
- index:
521
- lucene-store.db: 40.00 B
522
- lucene.log.1: 16.00 B
523
- lucene.log.active: 4.00 B
524
- - Total: 60.00 B
525
- tm_tx_log.1: 0.00 B
526
- nioneo_logical.log.2: 16.00 B
527
- neostore.relationshiptypestore.db: 5.00 B
528
- lock: 0.00 B
529
- active_tx_log: 11.00 B
530
- neostore.propertystore.db.index.keys: 38.00 B
data/lib/db/neostore DELETED
Binary file
data/lib/db/neostore.id DELETED
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
data/lib/db/tm_tx_log.1 DELETED
File without changes