neo4j-core 2.2.1-java → 2.2.2-java
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/neo4j-core.rb +1 -0
- data/lib/neo4j-core/jars/neo4jrb-adaptor.jar +0 -0
- data/lib/neo4j-core/traversal/evaluator.rb +4 -4
- data/lib/neo4j-core/traversal/filter_predicate.rb +4 -3
- data/lib/neo4j-core/traversal/prune_evaluator.rb +4 -3
- data/lib/neo4j-core/traversal/traverser.rb +12 -1
- data/lib/neo4j-core/version.rb +1 -1
- metadata +3 -32
- data/lib/db/active_tx_log +0 -1
- data/lib/db/index/lucene-store.db +0 -0
- data/lib/db/index/lucene.log.active +0 -0
- data/lib/db/index/lucene.log.v0 +0 -0
- data/lib/db/index/lucene.log.v1 +0 -0
- data/lib/db/messages.log +0 -606
- data/lib/db/neostore +0 -0
- data/lib/db/neostore.id +0 -0
- data/lib/db/neostore.nodestore.db +0 -0
- data/lib/db/neostore.nodestore.db.id +0 -0
- data/lib/db/neostore.propertystore.db +0 -0
- data/lib/db/neostore.propertystore.db.arrays +0 -0
- data/lib/db/neostore.propertystore.db.arrays.id +0 -0
- data/lib/db/neostore.propertystore.db.id +0 -0
- data/lib/db/neostore.propertystore.db.index +0 -0
- data/lib/db/neostore.propertystore.db.index.id +0 -0
- data/lib/db/neostore.propertystore.db.index.keys +0 -0
- data/lib/db/neostore.propertystore.db.index.keys.id +0 -0
- data/lib/db/neostore.propertystore.db.strings +0 -0
- data/lib/db/neostore.propertystore.db.strings.id +0 -0
- data/lib/db/neostore.relationshipstore.db +0 -1
- data/lib/db/neostore.relationshipstore.db.id +0 -0
- data/lib/db/neostore.relationshiptypestore.db +0 -1
- data/lib/db/neostore.relationshiptypestore.db.id +0 -0
- data/lib/db/neostore.relationshiptypestore.db.names +0 -0
- data/lib/db/neostore.relationshiptypestore.db.names.id +0 -0
- data/lib/db/nioneo_logical.log.active +0 -0
- data/lib/db/nioneo_logical.log.v0 +0 -0
- data/lib/db/nioneo_logical.log.v1 +0 -0
- data/lib/db/tm_tx_log.1 +0 -0
data/lib/neo4j-core.rb
CHANGED
Binary file
|
@@ -5,17 +5,17 @@ module Neo4j
|
|
5
5
|
# Implements the Neo4j Evaluator Java interface, only used internally.
|
6
6
|
# @private
|
7
7
|
class Evaluator
|
8
|
-
include Java::OrgNeo4jGraphdbTraversal::
|
8
|
+
include Java::OrgNeo4jGraphdbTraversal::PathEvaluator
|
9
9
|
|
10
10
|
def initialize(&eval_block)
|
11
11
|
@eval_block = eval_block
|
12
12
|
end
|
13
13
|
|
14
14
|
# Implements the Java Interface:
|
15
|
-
# evaluate(Path path)
|
15
|
+
# evaluate(Path path, BranchState<STATE> state)
|
16
16
|
# Evaluates a Path and returns an Evaluation containing information about whether or not to include it in the traversal result, i.e return it from the Traverser.
|
17
|
-
def evaluate(path)
|
18
|
-
ret = @eval_block.call(path)
|
17
|
+
def evaluate(path, state)
|
18
|
+
ret = @eval_block.call(path, state)
|
19
19
|
case ret
|
20
20
|
when :exclude_and_continue then
|
21
21
|
Java::OrgNeo4jGraphdbTraversal::Evaluation::EXCLUDE_AND_CONTINUE
|
@@ -4,7 +4,7 @@ module Neo4j
|
|
4
4
|
# Implements the Neo4j Predicate Java interface, only used internally.
|
5
5
|
# @private
|
6
6
|
class FilterPredicate
|
7
|
-
include Java::OrgNeo4jGraphdbTraversal::
|
7
|
+
include Java::OrgNeo4jGraphdbTraversal::PathEvaluator
|
8
8
|
|
9
9
|
def initialize
|
10
10
|
@procs = []
|
@@ -14,13 +14,14 @@ module Neo4j
|
|
14
14
|
@procs << proc
|
15
15
|
end
|
16
16
|
|
17
|
-
|
17
|
+
# for the state parameter see - http://api.neo4j.org/1.8.1/org/neo4j/graphdb/traversal/BranchState.html
|
18
|
+
def evaluate(path, state)
|
18
19
|
if path.length == 0
|
19
20
|
return Java::OrgNeo4jGraphdbTraversal::Evaluation::EXCLUDE_AND_CONTINUE
|
20
21
|
end
|
21
22
|
# find the first filter which returns false
|
22
23
|
# if not found then we will accept this path
|
23
|
-
if @procs.find { |p| !p.call(path) }.nil?
|
24
|
+
if @procs.find { |p| !p.call(path, state) }.nil?
|
24
25
|
Java::OrgNeo4jGraphdbTraversal::Evaluation::INCLUDE_AND_CONTINUE
|
25
26
|
else
|
26
27
|
Java::OrgNeo4jGraphdbTraversal::Evaluation::EXCLUDE_AND_CONTINUE
|
@@ -5,15 +5,16 @@ module Neo4j
|
|
5
5
|
# Implements the Neo4j PruneEvaluator Java interface, only used internally.
|
6
6
|
# @private
|
7
7
|
class PruneEvaluator
|
8
|
-
include Java::OrgNeo4jGraphdbTraversal::
|
8
|
+
include Java::OrgNeo4jGraphdbTraversal::PathEvaluator
|
9
9
|
|
10
10
|
def initialize(proc)
|
11
11
|
@proc = proc
|
12
12
|
end
|
13
13
|
|
14
|
-
|
14
|
+
# for the state parameter see - http://api.neo4j.org/1.8.1/org/neo4j/graphdb/traversal/BranchState.html
|
15
|
+
def evaluate(path, state)
|
15
16
|
return Java::OrgNeo4jGraphdbTraversal::Evaluation::EXCLUDE_AND_CONTINUE if path.length == 0
|
16
|
-
if @proc.call(path)
|
17
|
+
if @proc.call(path, state)
|
17
18
|
Java::OrgNeo4jGraphdbTraversal::Evaluation::INCLUDE_AND_PRUNE
|
18
19
|
else
|
19
20
|
Java::OrgNeo4jGraphdbTraversal::Evaluation::INCLUDE_AND_CONTINUE
|
@@ -239,7 +239,8 @@ module Neo4j
|
|
239
239
|
# @return self
|
240
240
|
# @see Neo4j::Core::Traversal#expand
|
241
241
|
def expander(&expander)
|
242
|
-
|
242
|
+
exp = RelExpander.create_pair(&expander)
|
243
|
+
@td = Java::Neo4jRb::Adaptor.expandPath(@td.java_object, exp)
|
243
244
|
self
|
244
245
|
end
|
245
246
|
|
@@ -273,8 +274,13 @@ module Neo4j
|
|
273
274
|
end
|
274
275
|
|
275
276
|
# Cuts of of parts of the traversal.
|
277
|
+
#
|
278
|
+
# The optional @branch_state@ parameter is an accessor for a state associated with a TraversalBranch during a traversal.
|
279
|
+
# TraversalBranch can have an associated state which follows down the branch as the traversal goes. If the state is modified with setState(Object) it means that branches further down will have the newly set state, until it potentially gets overridden again. The state returned from getState() represents the state associated with the parent branch, which by this point has followed down to the branch calling getState().
|
280
|
+
#
|
276
281
|
# @yield [path]
|
277
282
|
# @yieldparam [Java::OrgNeo4jGraphdb::Path] path the path which can be used to filter nodes
|
283
|
+
# @yieldparam [Java::org.neo4j.graphdb.traversal.BranchState] branch_state the path which can be used to filter nodes
|
278
284
|
# @yieldreturn [true,false] only if true the path should be cut of, no traversal beyond this.
|
279
285
|
# @example
|
280
286
|
# a.outgoing(:friends).outgoing(:recommend).depth(:all).prune{|path| path.end_node[:name] == 'B'}
|
@@ -285,8 +291,13 @@ module Neo4j
|
|
285
291
|
end
|
286
292
|
|
287
293
|
# Only include nodes in the traversal in which the provided block returns true.
|
294
|
+
#
|
295
|
+
# The optional @branch_state@ parameter is an accessor for a state associated with a TraversalBranch during a traversal.
|
296
|
+
# TraversalBranch can have an associated state which follows down the branch as the traversal goes. If the state is modified with setState(Object) it means that branches further down will have the newly set state, until it potentially gets overridden again. The state returned from getState() represents the state associated with the parent branch, which by this point has followed down to the branch calling getState().
|
297
|
+
#
|
288
298
|
# @yield [path]
|
289
299
|
# @yieldparam [Java::OrgNeo4jGraphdb::Path] path the path which can be used to filter nodes
|
300
|
+
# @yieldparam [Java::org.neo4j.graphdb.traversal.BranchState] branch_state the path which can be used to filter nodes
|
290
301
|
# @yieldreturn [true,false] only if true the node will be included in the traversal result.
|
291
302
|
#
|
292
303
|
# @example Return nodes that are exact at depth 2 from me
|
data/lib/neo4j-core/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: neo4j-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.2
|
5
5
|
prerelease:
|
6
6
|
platform: java
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-12-
|
12
|
+
date: 2012-12-28 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: neo4j-community
|
@@ -63,36 +63,6 @@ extra_rdoc_files:
|
|
63
63
|
- README.rdoc
|
64
64
|
files:
|
65
65
|
- lib/neo4j-core.rb
|
66
|
-
- lib/db/active_tx_log
|
67
|
-
- lib/db/messages.log
|
68
|
-
- lib/db/neostore
|
69
|
-
- lib/db/neostore.id
|
70
|
-
- lib/db/neostore.nodestore.db
|
71
|
-
- lib/db/neostore.nodestore.db.id
|
72
|
-
- lib/db/neostore.propertystore.db
|
73
|
-
- lib/db/neostore.propertystore.db.arrays
|
74
|
-
- lib/db/neostore.propertystore.db.arrays.id
|
75
|
-
- lib/db/neostore.propertystore.db.id
|
76
|
-
- lib/db/neostore.propertystore.db.index
|
77
|
-
- lib/db/neostore.propertystore.db.index.id
|
78
|
-
- lib/db/neostore.propertystore.db.index.keys
|
79
|
-
- lib/db/neostore.propertystore.db.index.keys.id
|
80
|
-
- lib/db/neostore.propertystore.db.strings
|
81
|
-
- lib/db/neostore.propertystore.db.strings.id
|
82
|
-
- lib/db/neostore.relationshipstore.db
|
83
|
-
- lib/db/neostore.relationshipstore.db.id
|
84
|
-
- lib/db/neostore.relationshiptypestore.db
|
85
|
-
- lib/db/neostore.relationshiptypestore.db.id
|
86
|
-
- lib/db/neostore.relationshiptypestore.db.names
|
87
|
-
- lib/db/neostore.relationshiptypestore.db.names.id
|
88
|
-
- lib/db/nioneo_logical.log.active
|
89
|
-
- lib/db/nioneo_logical.log.v0
|
90
|
-
- lib/db/nioneo_logical.log.v1
|
91
|
-
- lib/db/tm_tx_log.1
|
92
|
-
- lib/db/index/lucene-store.db
|
93
|
-
- lib/db/index/lucene.log.active
|
94
|
-
- lib/db/index/lucene.log.v0
|
95
|
-
- lib/db/index/lucene.log.v1
|
96
66
|
- lib/neo4j/algo.rb
|
97
67
|
- lib/neo4j/config.rb
|
98
68
|
- lib/neo4j/config.rb~
|
@@ -115,6 +85,7 @@ files:
|
|
115
85
|
- lib/neo4j-core/index/indexer_registry.rb
|
116
86
|
- lib/neo4j-core/index/lucene_query.rb
|
117
87
|
- lib/neo4j-core/index/unique_factory.rb
|
88
|
+
- lib/neo4j-core/jars/neo4jrb-adaptor.jar
|
118
89
|
- lib/neo4j-core/node/class_methods.rb
|
119
90
|
- lib/neo4j-core/node/node.rb
|
120
91
|
- lib/neo4j-core/property/java.rb
|
data/lib/db/active_tx_log
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
tm_tx_log.1
|
Binary file
|
Binary file
|
data/lib/db/index/lucene.log.v0
DELETED
Binary file
|
data/lib/db/index/lucene.log.v1
DELETED
Binary file
|
data/lib/db/messages.log
DELETED
@@ -1,606 +0,0 @@
|
|
1
|
-
2012-08-21 13:43:33.857+0000: WARNING! Deprecated configuration options used. See manual for details
|
2
|
-
2012-08-21 13:43:33.861+0000: enable_online_backup has been replaced with online_backup_enabled and online_backup_port
|
3
|
-
2012-08-21 13:43:33.861+0000: neo4j.ext.udc.disable has been replaced with neo4j.ext.udc.enabled
|
4
|
-
2012-08-21 13:43:33.946+0000: Creating new db @ /Users/andreasronge/projects/neo4j-core/lib/db/neostore
|
5
|
-
2012-08-21 13:43:34.096+0000: Opened logical log [/Users/andreasronge/projects/neo4j-core/lib/db/nioneo_logical.log.1] version=0, lastTxId=1 (clean)
|
6
|
-
2012-08-21 13:43:34.103+0000: TM new log: tm_tx_log.1
|
7
|
-
2012-08-21 13:43:34.142+0000: Opened logical log [/Users/andreasronge/projects/neo4j-core/lib/db/index/lucene.log.1] version=0, lastTxId=1 (clean)
|
8
|
-
2012-08-21 13:43:34.145+0000: --- STARTUP diagnostics START ---
|
9
|
-
2012-08-21 13:43:34.150+0000: Neo4j Kernel properties:
|
10
|
-
read_only=false
|
11
|
-
forced_kernel_id=
|
12
|
-
neo4j.ext.udc.host=localhost:8888
|
13
|
-
logical_log=nioneo_logical.log
|
14
|
-
min_node_cache_size=0
|
15
|
-
intercept_committing_transactions=false
|
16
|
-
node_auto_indexing=false
|
17
|
-
remote_shell_name=shell
|
18
|
-
relationship_cache_size=116523008
|
19
|
-
cache_type=soft
|
20
|
-
intercept_deserialized_transactions=false
|
21
|
-
ha.db=NO
|
22
|
-
use_adaptive_cache=YES
|
23
|
-
lucene_searcher_cache_size=2147483647
|
24
|
-
neo4j.ext.udc.interval=86400000
|
25
|
-
use_memory_mapped_buffers=true
|
26
|
-
timestamps=YES
|
27
|
-
ha.coordinators=localhost:2181,localhost:2182,localhost:2183
|
28
|
-
rebuild_idgenerators_fast=true
|
29
|
-
neostore.propertystore.db.index.keys.mapped_memory=1M
|
30
|
-
max_node_cache_size=1500
|
31
|
-
neostore.propertystore.db.arrays.mapped_memory=130M
|
32
|
-
neostore.propertystore.db.strings.mapped_memory=130M
|
33
|
-
gcr_cache_min_log_interval=60s
|
34
|
-
relationship_grab_size=100
|
35
|
-
relationship_auto_indexing=false
|
36
|
-
remote_shell_read_only=false
|
37
|
-
storage_path=db
|
38
|
-
node_cache_array_fraction=1.0
|
39
|
-
allow_store_upgrade=false
|
40
|
-
execution_guard_enabled=false
|
41
|
-
relationship_cache_array_fraction=1.0
|
42
|
-
migration_thread=NO
|
43
|
-
remote_logging_host=127.0.0.1
|
44
|
-
store_dir=/Users/andreasronge/projects/neo4j-core/lib/db
|
45
|
-
online_backup_enabled=false
|
46
|
-
remote_logging_port=4560
|
47
|
-
enable_rules=YES
|
48
|
-
gc_monitor_threshold=200ms
|
49
|
-
load_kernel_extensions=true
|
50
|
-
array_block_size=120
|
51
|
-
neostore.relationshipstore.db.mapped_memory=50M
|
52
|
-
keep_logical_logs=true
|
53
|
-
dump_configuration=false
|
54
|
-
gc_monitor_wait_time=100ms
|
55
|
-
neostore.nodestore.db.mapped_memory=25M
|
56
|
-
neo4j.ext.udc.first_delay=100
|
57
|
-
remote_shell_enabled=true
|
58
|
-
min_relationship_cache_size=0
|
59
|
-
max_relationship_cache_size=3500
|
60
|
-
neo4j.ext.udc.reg=unreg
|
61
|
-
remote_shell_port=9332
|
62
|
-
adaptive_cache_heap_ratio=0.77
|
63
|
-
identity_map=YES
|
64
|
-
adaptive_cache_manager_decrease_ratio=1.15
|
65
|
-
ha.server_id=2
|
66
|
-
adaptive_cache_worker_sleep_time=3000
|
67
|
-
neo_store=neostore
|
68
|
-
logging.threshold_for_rotation=104857600
|
69
|
-
neostore.propertystore.db.index.mapped_memory=1M
|
70
|
-
adaptive_cache_manager_increase_ratio=1.1
|
71
|
-
backup_slave=false
|
72
|
-
neostore.propertystore.db.mapped_memory=90M
|
73
|
-
string_block_size=120
|
74
|
-
grab_file_lock=true
|
75
|
-
remote_logging_enabled=false
|
76
|
-
node_cache_size=116523008
|
77
|
-
ha.server=localhost:6002
|
78
|
-
neo4j.ext.udc.enabled=true
|
79
|
-
online_backup_port=6362
|
80
|
-
2012-08-21 13:43:34.156+0000: Diagnostics providers:
|
81
|
-
org.neo4j.kernel.configuration.Config
|
82
|
-
org.neo4j.kernel.info.DiagnosticsManager
|
83
|
-
SYSTEM_MEMORY
|
84
|
-
JAVA_MEMORY
|
85
|
-
OPERATING_SYSTEM
|
86
|
-
JAVA_VIRTUAL_MACHINE
|
87
|
-
CLASSPATH
|
88
|
-
LIBRARY_PATH
|
89
|
-
SYSTEM_PROPERTIES
|
90
|
-
2012-08-21 13:43:34.157+0000: System memory information:
|
91
|
-
Total Physical memory: 6.00 GB
|
92
|
-
Free Physical memory: 128.00 MB
|
93
|
-
Committed virtual memory: 64.00 MB
|
94
|
-
Total swap space: 0.00 B
|
95
|
-
Free swap space: 0.00 B
|
96
|
-
2012-08-21 13:43:34.160+0000: JVM memory information:
|
97
|
-
Free memory: 86.54 MB
|
98
|
-
Total memory: 117.63 MB
|
99
|
-
Max memory: 444.50 MB
|
100
|
-
Garbage Collector: PS Scavenge: [PS Eden Space, PS Survivor Space]
|
101
|
-
Garbage Collector: PS MarkSweep: [PS Eden Space, PS Survivor Space, PS Old Gen, PS Perm Gen]
|
102
|
-
Memory Pool: Code Cache (Non-heap memory): committed=2.44 MB, used=2.26 MB, max=48.00 MB, threshold=0.00 B
|
103
|
-
Memory Pool: PS Eden Space (Heap memory): committed=67.69 MB, used=6.97 MB, max=151.56 MB, threshold=?
|
104
|
-
Memory Pool: PS Survivor Space (Heap memory): committed=2.94 MB, used=2.94 MB, max=2.94 MB, threshold=?
|
105
|
-
Memory Pool: PS Old Gen (Heap memory): committed=47.00 MB, used=21.18 MB, max=333.38 MB, threshold=0.00 B
|
106
|
-
Memory Pool: PS Perm Gen (Non-heap memory): committed=29.94 MB, used=29.77 MB, max=82.00 MB, threshold=0.00 B
|
107
|
-
2012-08-21 13:43:34.169+0000: Operating system information:
|
108
|
-
Operating System: Mac OS X; version: 10.8; arch: x86_64; cpus: 8
|
109
|
-
Max number of file descriptors: 10240
|
110
|
-
Number of open file descriptors: 100
|
111
|
-
Process id: 3131@Andreass-MacBook-Pro-2.local
|
112
|
-
Byte order: LITTLE_ENDIAN
|
113
|
-
2012-08-21 13:43:34.343+0000: JVM information:
|
114
|
-
VM Name: Java HotSpot(TM) 64-Bit Server VM
|
115
|
-
VM Vendor: Oracle Corporation
|
116
|
-
VM Version: 23.1-b03
|
117
|
-
JIT compiler: HotSpot 64-Bit Tiered Compilers
|
118
|
-
VM Arguments: [-Djdk.home=, -Djruby.home=/Users/andreasronge/.rvm/rubies/jruby-1.7.0.preview2, -Djruby.script=jruby, -Djruby.shell=/bin/sh, -Djffi.boot.library.path=/Users/andreasronge/.rvm/rubies/jruby-1.7.0.preview2/lib/native/Darwin, -Xmx500m, -Xss2048k, -Djruby.memory.max=500m, -Djruby.stack.max=2048k, -Xbootclasspath/a:/Users/andreasronge/.rvm/rubies/jruby-1.7.0.preview2/lib/jruby.jar, -Dfile.encoding=UTF-8]
|
119
|
-
2012-08-21 13:43:34.345+0000: Java classpath:
|
120
|
-
[loader.2] file:/Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/ext/localedata.jar
|
121
|
-
[bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/rt.jar
|
122
|
-
[loader.2] file:/System/Library/Java/Extensions/dns_sd.jar
|
123
|
-
[loader.2] file:/System/Library/Java/Extensions/j3dutils.jar
|
124
|
-
[loader.2] file:/System/Library/Java/Extensions/MRJToolkit.jar
|
125
|
-
[loader.2] file:/System/Library/Java/Extensions/jai_core.jar
|
126
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.M07-java/lib/neo4j-community/jars/scala-library-2.9.1-1.jar
|
127
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.M07-java/lib/neo4j-community/jars/server-api-1.8.M07.jar
|
128
|
-
[bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/jce.jar
|
129
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.M07-java/lib/neo4j-community/jars/neo4j-graph-algo-1.8.M07.jar
|
130
|
-
[loader.2] file:/System/Library/Java/Extensions/vecmath.jar
|
131
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.M07-java/lib/neo4j-community/jars/org.apache.servicemix.bundles.jline-0.9.94_1.jar
|
132
|
-
[classpath + loader.1] file:/Users/andreasronge/projects/neo4j-core/lib/
|
133
|
-
[loader.2] file:/System/Library/Java/Extensions/libmlib_jai.jnilib
|
134
|
-
[loader.2] file:/System/Library/Java/Extensions/jai_codec.jar
|
135
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.M07-java/lib/neo4j-community/jars/neo4j-shell-1.8.M07.jar
|
136
|
-
[bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/charsets.jar
|
137
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.M07-java/lib/neo4j-community/jars/lucene-core-3.5.0.jar
|
138
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.M07-java/lib/neo4j-community/jars/neo4j-lucene-index-1.8.M07.jar
|
139
|
-
[loader.2] file:/Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/ext/zipfs.jar
|
140
|
-
[loader.2] file:/Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/ext/dnsns.jar
|
141
|
-
[loader.2] file:/System/Library/Java/Extensions/libJ3D.jnilib
|
142
|
-
[loader.2] file:/Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/ext/sunec.jar
|
143
|
-
[bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/jfr.jar
|
144
|
-
[loader.2] file:/System/Library/Java/Extensions/mlibwrapper_jai.jar
|
145
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.M07-java/lib/neo4j-community/jars/geronimo-jta_1.1_spec-1.1.1.jar
|
146
|
-
[loader.2] file:/System/Library/Java/Extensions/QTJava.zip
|
147
|
-
[loader.2] file:/Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/ext/sunjce_provider.jar
|
148
|
-
[bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/JObjC.jar
|
149
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.M07-java/lib/neo4j-community/jars/neo4j-jmx-1.8.M07.jar
|
150
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.M07-java/lib/neo4j-community/jars/neo4j-udc-1.8.M07.jar
|
151
|
-
[loader.2] file:/System/Library/Java/Extensions/libJ3DAudio.jnilib
|
152
|
-
[loader.2] file:/System/Library/Java/Extensions/libAppleScriptEngine.jnilib
|
153
|
-
[bootstrap] /Users/andreasronge/.rvm/rubies/jruby-1.7.0.preview2/lib/jruby.jar
|
154
|
-
[loader.2] file:/Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/ext/sunpkcs11.jar
|
155
|
-
[bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/sunrsasign.jar
|
156
|
-
[loader.2] file:/System/Library/Java/Extensions/j3daudio.jar
|
157
|
-
[loader.2] file:/System/Library/Java/Extensions/AppleScriptEngine.jar
|
158
|
-
[bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/classes
|
159
|
-
[loader.2] file:/System/Library/Java/Extensions/libJ3DUtils.jnilib
|
160
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.M07-java/lib/neo4j-community/jars/neo4j-kernel-1.8.M07.jar
|
161
|
-
[bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/jsse.jar
|
162
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.M07-java/lib/neo4j-community/jars/neo4j-cypher-1.8.M07.jar
|
163
|
-
[loader.2] file:/System/Library/Java/Extensions/libQTJNative.jnilib
|
164
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/gems/neo4j-community-1.8.M07-java/lib/neo4j-community/jars/neo4j-graph-matching-1.8.M07.jar
|
165
|
-
[loader.2] file:/System/Library/Java/Extensions/j3dcore.jar
|
166
|
-
[bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/resources.jar
|
167
|
-
[loader.2] file:/usr/lib/java/libjdns_sd.jnilib
|
168
|
-
2012-08-21 13:43:34.348+0000: Library path:
|
169
|
-
/Users/andreasronge/Library/Java/Extensions
|
170
|
-
/Library/Java/Extensions
|
171
|
-
/Network/Library/Java/Extensions
|
172
|
-
/System/Library/Java/Extensions
|
173
|
-
/usr/lib/java
|
174
|
-
/Users/andreasronge/projects/neo4j-core/lib
|
175
|
-
2012-08-21 13:43:34.348+0000: System.properties:
|
176
|
-
jruby.home = /Users/andreasronge/.rvm/rubies/jruby-1.7.0.preview2
|
177
|
-
sun.boot.library.path = /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib
|
178
|
-
user.country.format = SE
|
179
|
-
gopherProxySet = false
|
180
|
-
path.separator = :
|
181
|
-
file.encoding.pkg = sun.io
|
182
|
-
user.country = US
|
183
|
-
sun.java.launcher = SUN_STANDARD
|
184
|
-
sun.os.patch.level = unknown
|
185
|
-
user.dir = /Users/andreasronge/projects/neo4j-core/lib
|
186
|
-
neo4j.ext.udc.source = neo4rb
|
187
|
-
jdk.home =
|
188
|
-
sun.jnu.encoding = UTF-8
|
189
|
-
jruby.memory.max = 500m
|
190
|
-
sun.management.compiler = HotSpot 64-Bit Tiered Compilers
|
191
|
-
http.nonProxyHosts = local|*.local|169.254/16|*.169.254/16
|
192
|
-
jffi.boot.library.path = /Users/andreasronge/.rvm/rubies/jruby-1.7.0.preview2/lib/native/Darwin
|
193
|
-
user.home = /Users/andreasronge
|
194
|
-
user.timezone = Europe/Stockholm
|
195
|
-
file.encoding = UTF-8
|
196
|
-
jruby.stack.max = 2048k
|
197
|
-
jruby.script = jruby
|
198
|
-
user.name = andreasronge
|
199
|
-
jruby.shell = /bin/sh
|
200
|
-
sun.java.command = org/jruby/Main /Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/bin/ruby_noexec_wrapper /Users/andreasronge/.rvm/gems/jruby-1.7.0.preview2/bin/pry
|
201
|
-
sun.arch.data.model = 64
|
202
|
-
user.language = en
|
203
|
-
awt.toolkit = sun.lwawt.macosx.LWCToolkit
|
204
|
-
file.separator = /
|
205
|
-
sun.io.unicode.encoding = UnicodeBig
|
206
|
-
sun.cpu.endian = little
|
207
|
-
socksNonProxyHosts = local|*.local|169.254/16|*.169.254/16
|
208
|
-
ftp.nonProxyHosts = local|*.local|169.254/16|*.169.254/16
|
209
|
-
sun.cpu.isalist =
|
210
|
-
2012-08-21 13:43:34.349+0000: --- STARTUP diagnostics END ---
|
211
|
-
2012-08-21 13:43:34.448+0000: Extension org.neo4j.kernel.KernelExtension[kernel jmx] loaded ok
|
212
|
-
2012-08-21 13:43:34.455+0000: Extension org.neo4j.kernel.KernelExtension[kernel udc] loaded ok
|
213
|
-
2012-08-21 13:43:34.747+0000: Extension org.neo4j.kernel.KernelExtension[shell] loaded ok
|
214
|
-
2012-08-21 13:43:34.750+0000: --- STARTUP diagnostics for KernelDiagnostics:Versions START ---
|
215
|
-
2012-08-21 13:43:34.750+0000: Graph Database: org.neo4j.kernel.EmbeddedGraphDatabase StoreId[time:1345556613946, id:2509386930507999424, store version: 13561656364791302]
|
216
|
-
2012-08-21 13:43:34.750+0000: Kernel version: Neo4j - Graph Database Kernel 1.8.M07
|
217
|
-
2012-08-21 13:43:34.750+0000: Neo4j component versions:
|
218
|
-
2012-08-21 13:43:34.751+0000: Neo4j - Graph Database Kernel 1.8.M07
|
219
|
-
2012-08-21 13:43:34.751+0000: --- STARTUP diagnostics for KernelDiagnostics:Versions END ---
|
220
|
-
2012-08-21 13:43:34.754+0000: --- STARTUP diagnostics for NEO_STORE_VERSIONS START ---
|
221
|
-
2012-08-21 13:43:34.754+0000: Store versions:
|
222
|
-
Store versions:
|
223
|
-
NeoStore v0.A.0
|
224
|
-
NodeStore v0.A.0
|
225
|
-
RelationshipStore v0.A.0
|
226
|
-
RelationshipTypeStore v0.A.0
|
227
|
-
PropertyStore v0.A.0
|
228
|
-
PropertyIndexStore v0.A.0
|
229
|
-
StringPropertyStore v0.A.0
|
230
|
-
ArrayPropertyStore v0.A.0
|
231
|
-
2012-08-21 13:43:34.754+0000: --- STARTUP diagnostics for NEO_STORE_VERSIONS END ---
|
232
|
-
2012-08-21 13:43:34.754+0000: --- STARTUP diagnostics for NEO_STORE_ID_USAGE START ---
|
233
|
-
2012-08-21 13:43:34.754+0000: Id usage:
|
234
|
-
Id usage:
|
235
|
-
NodeStore: used=1 high=0
|
236
|
-
RelationshipStore: used=0 high=-1
|
237
|
-
RelationshipTypeStore: used=0 high=-1
|
238
|
-
PropertyStore: used=0 high=-1
|
239
|
-
PropertyIndexStore: used=0 high=-1
|
240
|
-
StringPropertyStore: used=1 high=0
|
241
|
-
ArrayPropertyStore: used=1 high=0
|
242
|
-
2012-08-21 13:43:34.755+0000: --- STARTUP diagnostics for NEO_STORE_ID_USAGE END ---
|
243
|
-
2012-08-21 13:43:34.755+0000: --- STARTUP diagnostics for KernelDiagnostics:StoreFiles START ---
|
244
|
-
2012-08-21 13:43:34.755+0000: Storage files:
|
245
|
-
active_tx_log: 11.00 B
|
246
|
-
index:
|
247
|
-
lucene-store.db: 40.00 B
|
248
|
-
lucene.log.1: 16.00 B
|
249
|
-
lucene.log.active: 4.00 B
|
250
|
-
- Total: 60.00 B
|
251
|
-
lock: 0.00 B
|
252
|
-
messages.log: 13.75 kB
|
253
|
-
neostore: 54.00 B
|
254
|
-
neostore.id: 9.00 B
|
255
|
-
neostore.nodestore.db: 9.00 B
|
256
|
-
neostore.nodestore.db.id: 9.00 B
|
257
|
-
neostore.propertystore.db: 0.00 B
|
258
|
-
neostore.propertystore.db.arrays: 128.00 B
|
259
|
-
neostore.propertystore.db.arrays.id: 9.00 B
|
260
|
-
neostore.propertystore.db.id: 9.00 B
|
261
|
-
neostore.propertystore.db.index: 0.00 B
|
262
|
-
neostore.propertystore.db.index.id: 9.00 B
|
263
|
-
neostore.propertystore.db.index.keys: 38.00 B
|
264
|
-
neostore.propertystore.db.index.keys.id: 9.00 B
|
265
|
-
neostore.propertystore.db.strings: 128.00 B
|
266
|
-
neostore.propertystore.db.strings.id: 9.00 B
|
267
|
-
neostore.relationshipstore.db: 0.00 B
|
268
|
-
neostore.relationshipstore.db.id: 9.00 B
|
269
|
-
neostore.relationshiptypestore.db: 0.00 B
|
270
|
-
neostore.relationshiptypestore.db.id: 9.00 B
|
271
|
-
neostore.relationshiptypestore.db.names: 38.00 B
|
272
|
-
neostore.relationshiptypestore.db.names.id: 9.00 B
|
273
|
-
nioneo_logical.log.1: 16.00 B
|
274
|
-
nioneo_logical.log.active: 4.00 B
|
275
|
-
tm_tx_log.1: 0.00 B
|
276
|
-
2012-08-21 13:43:34.758+0000: --- STARTUP diagnostics for KernelDiagnostics:StoreFiles END ---
|
277
|
-
2012-08-21 13:43:34.760+0000: Started - database is now available
|
278
|
-
2012-08-21 13:43:34.760+0000: GC Monitor started.
|
279
|
-
2012-08-21 13:44:00.601+0000: Stopping - database is now unavailable
|
280
|
-
2012-08-21 13:44:00.603+0000: TM shutting down
|
281
|
-
2012-08-21 13:44:00.607+0000: Closed log /Users/andreasronge/projects/neo4j-core/lib/db/index/lucene.log
|
282
|
-
2012-08-21 13:44:00.608+0000: Closed log /Users/andreasronge/projects/neo4j-core/lib/db/nioneo_logical.log
|
283
|
-
2012-08-21 13:44:00.613+0000: NeoStore closed
|
284
|
-
2012-08-21 13:44:00.613+0000: --- SHUTDOWN diagnostics START ---
|
285
|
-
2012-08-21 13:44:00.613+0000: --- SHUTDOWN diagnostics END ---
|
286
|
-
2012-12-08 21:19:11.832+0000: WARNING! Deprecated configuration options used. See manual for details
|
287
|
-
2012-12-08 21:19:11.834+0000: enable_online_backup has been replaced with online_backup_enabled and online_backup_port
|
288
|
-
2012-12-08 21:19:11.834+0000: neo4j.ext.udc.disable has been replaced with neo4j.ext.udc.enabled
|
289
|
-
2012-12-08 21:19:11.834+0000: cannot configure writers and searchers individually since they go together
|
290
|
-
2012-12-08 21:19:11.891+0000: --- INITIALIZED diagnostics START ---
|
291
|
-
2012-12-08 21:19:11.892+0000: Neo4j Kernel properties:
|
292
|
-
read_only=false
|
293
|
-
forced_kernel_id=
|
294
|
-
neo4j.ext.udc.host=udc.neo4j.org
|
295
|
-
logical_log=nioneo_logical.log
|
296
|
-
min_node_cache_size=0
|
297
|
-
intercept_committing_transactions=false
|
298
|
-
node_auto_indexing=false
|
299
|
-
remote_shell_name=shell
|
300
|
-
cache_type=soft
|
301
|
-
intercept_deserialized_transactions=false
|
302
|
-
ha.db=false
|
303
|
-
use_adaptive_cache=true
|
304
|
-
lucene_searcher_cache_size=2147483647
|
305
|
-
neo4j.ext.udc.interval=86400000
|
306
|
-
use_memory_mapped_buffers=true
|
307
|
-
timestamps=true
|
308
|
-
ha.coordinators=localhost:2181,localhost:2182,localhost:2183
|
309
|
-
rebuild_idgenerators_fast=true
|
310
|
-
neostore.propertystore.db.index.keys.mapped_memory=1M
|
311
|
-
max_node_cache_size=1500
|
312
|
-
neostore.propertystore.db.arrays.mapped_memory=130M
|
313
|
-
neostore.propertystore.db.strings.mapped_memory=130M
|
314
|
-
log_mapped_memory_stats_filename=mapped_memory_stats.log
|
315
|
-
log_mapped_memory_stats_interval=1000000
|
316
|
-
gcr_cache_min_log_interval=60s
|
317
|
-
relationship_auto_indexing=false
|
318
|
-
relationship_grab_size=100
|
319
|
-
remote_shell_read_only=false
|
320
|
-
storage_path=db
|
321
|
-
node_cache_array_fraction=1.0
|
322
|
-
allow_store_upgrade=false
|
323
|
-
execution_guard_enabled=false
|
324
|
-
relationship_cache_array_fraction=1.0
|
325
|
-
migration_thread=false
|
326
|
-
remote_logging_host=127.0.0.1
|
327
|
-
store_dir=/Users/andreasronge/projects/neo4j-core/lib/db
|
328
|
-
online_backup_enabled=false
|
329
|
-
remote_logging_port=4560
|
330
|
-
enable_rules=true
|
331
|
-
gc_monitor_threshold=200ms
|
332
|
-
load_kernel_extensions=true
|
333
|
-
array_block_size=120
|
334
|
-
neostore.relationshipstore.db.mapped_memory=50M
|
335
|
-
keep_logical_logs=true
|
336
|
-
dump_configuration=false
|
337
|
-
gc_monitor_wait_time=100ms
|
338
|
-
neostore.nodestore.db.mapped_memory=25M
|
339
|
-
neo4j.ext.udc.first_delay=600000
|
340
|
-
remote_shell_enabled=true
|
341
|
-
min_relationship_cache_size=0
|
342
|
-
max_relationship_cache_size=3500
|
343
|
-
neo4j.ext.udc.reg=unreg
|
344
|
-
remote_shell_port=9332
|
345
|
-
adaptive_cache_heap_ratio=0.77
|
346
|
-
identity_map=true
|
347
|
-
adaptive_cache_manager_decrease_ratio=1.15
|
348
|
-
log_mapped_memory_stats=false
|
349
|
-
ha.server_id=2
|
350
|
-
mapped_memory_page_size=1M
|
351
|
-
neo_store=neostore
|
352
|
-
adaptive_cache_worker_sleep_time=3000
|
353
|
-
logging.threshold_for_rotation=104857600
|
354
|
-
neostore.propertystore.db.index.mapped_memory=1M
|
355
|
-
adaptive_cache_manager_increase_ratio=1.1
|
356
|
-
backup_slave=false
|
357
|
-
neostore.propertystore.db.mapped_memory=90M
|
358
|
-
string_block_size=120
|
359
|
-
grab_file_lock=true
|
360
|
-
remote_logging_enabled=false
|
361
|
-
ha.server=localhost:6002
|
362
|
-
neo4j.ext.udc.enabled=true
|
363
|
-
all_stores_total_mapped_memory_size=500M
|
364
|
-
online_backup_port=6362
|
365
|
-
2012-12-08 21:19:11.896+0000: Diagnostics providers:
|
366
|
-
org.neo4j.kernel.configuration.Config
|
367
|
-
org.neo4j.kernel.info.DiagnosticsManager
|
368
|
-
SYSTEM_MEMORY
|
369
|
-
JAVA_MEMORY
|
370
|
-
OPERATING_SYSTEM
|
371
|
-
JAVA_VIRTUAL_MACHINE
|
372
|
-
CLASSPATH
|
373
|
-
LIBRARY_PATH
|
374
|
-
SYSTEM_PROPERTIES
|
375
|
-
NETWORK
|
376
|
-
2012-12-08 21:19:11.898+0000: System memory information:
|
377
|
-
Total Physical memory: 6.00 GB
|
378
|
-
Free Physical memory: 128.00 MB
|
379
|
-
Committed virtual memory: 64.00 MB
|
380
|
-
Total swap space: 0.00 B
|
381
|
-
Free swap space: 0.00 B
|
382
|
-
2012-12-08 21:19:11.901+0000: JVM memory information:
|
383
|
-
Free memory: 43.73 MB
|
384
|
-
Total memory: 66.06 MB
|
385
|
-
Max memory: 444.50 MB
|
386
|
-
Garbage Collector: PS Scavenge: [PS Eden Space, PS Survivor Space]
|
387
|
-
Garbage Collector: PS MarkSweep: [PS Eden Space, PS Survivor Space, PS Old Gen, PS Perm Gen]
|
388
|
-
Memory Pool: Code Cache (Non-heap memory): committed=2.44 MB, used=2.00 MB, max=48.00 MB, threshold=0.00 B
|
389
|
-
Memory Pool: PS Eden Space (Heap memory): committed=16.38 MB, used=9.81 MB, max=156.63 MB, threshold=?
|
390
|
-
Memory Pool: PS Survivor Space (Heap memory): committed=5.06 MB, used=3.97 MB, max=5.06 MB, threshold=?
|
391
|
-
Memory Pool: PS Old Gen (Heap memory): committed=44.63 MB, used=8.55 MB, max=333.38 MB, threshold=0.00 B
|
392
|
-
Memory Pool: PS Perm Gen (Non-heap memory): committed=23.38 MB, used=23.27 MB, max=82.00 MB, threshold=0.00 B
|
393
|
-
2012-12-08 21:19:11.905+0000: Operating system information:
|
394
|
-
Operating System: Mac OS X; version: 10.8.2; arch: x86_64; cpus: 8
|
395
|
-
Max number of file descriptors: 10240
|
396
|
-
Number of open file descriptors: 100
|
397
|
-
Process id: 2491@Andreass-MacBook-Pro-2.local
|
398
|
-
Byte order: LITTLE_ENDIAN
|
399
|
-
Local timezone: Europe/Stockholm
|
400
|
-
2012-12-08 21:19:12.108+0000: JVM information:
|
401
|
-
VM Name: Java HotSpot(TM) 64-Bit Server VM
|
402
|
-
VM Vendor: Oracle Corporation
|
403
|
-
VM Version: 23.1-b03
|
404
|
-
JIT compiler: HotSpot 64-Bit Tiered Compilers
|
405
|
-
VM Arguments: [-Djdk.home=, -Djruby.home=/Users/andreasronge/.rvm/rubies/jruby-1.6.7, -Djruby.script=jruby, -Djruby.shell=/bin/sh, -Djffi.boot.library.path=/Users/andreasronge/.rvm/rubies/jruby-1.6.7/lib/native/Darwin, -Xmx500m, -Xss2048k, -Djruby.memory.max=500m, -Djruby.stack.max=2048k, -Xbootclasspath/a:/Users/andreasronge/.rvm/rubies/jruby-1.6.7/lib/jruby.jar, -Dfile.encoding=UTF-8]
|
406
|
-
2012-12-08 21:19:12.109+0000: Java classpath:
|
407
|
-
[bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/rt.jar
|
408
|
-
[loader.2] file:/Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/ext/localedata.jar
|
409
|
-
[loader.2] file:/System/Library/Java/Extensions/dns_sd.jar
|
410
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.9.M01-java/lib/neo4j-community/jars/neo4j-jmx-1.9.M01.jar
|
411
|
-
[loader.2] file:/System/Library/Java/Extensions/MRJToolkit.jar
|
412
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.9.M01-java/lib/neo4j-community/jars/scala-library-2.9.1-1.jar
|
413
|
-
[bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/jce.jar
|
414
|
-
[classpath + loader.1] file:/Users/andreasronge/projects/neo4j-core/lib/
|
415
|
-
[loader.2] file:/System/Library/Java/Extensions/vecmath.jar
|
416
|
-
[loader.2] file:/System/Library/Java/Extensions/libmlib_jai.jnilib
|
417
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.9.M01-java/lib/neo4j-community/jars/neo4j-udc-1.9.M01.jar
|
418
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.9.M01-java/lib/neo4j-community/jars/neo4j-cypher-1.9.M01.jar
|
419
|
-
[loader.2] file:/Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/ext/dnsns.jar
|
420
|
-
[loader.2] file:/Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/ext/zipfs.jar
|
421
|
-
[loader.2] file:/System/Library/Java/Extensions/libJ3D.jnilib
|
422
|
-
[bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/jfr.jar
|
423
|
-
[loader.2] file:/Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/ext/sunec.jar
|
424
|
-
[loader.2] file:/System/Library/Java/Extensions/mlibwrapper_jai.jar
|
425
|
-
[loader.2] file:/System/Library/Java/Extensions/QTJava.zip
|
426
|
-
[bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/JObjC.jar
|
427
|
-
[loader.2] file:/System/Library/Java/Extensions/libAppleScriptEngine.jnilib
|
428
|
-
[loader.2] file:/System/Library/Java/Extensions/libJ3DAudio.jnilib
|
429
|
-
[bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/sunrsasign.jar
|
430
|
-
[bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/classes
|
431
|
-
[loader.2] file:/System/Library/Java/Extensions/j3daudio.jar
|
432
|
-
[loader.2] file:/System/Library/Java/Extensions/libJ3DUtils.jnilib
|
433
|
-
[loader.2] file:/System/Library/Java/Extensions/libQTJNative.jnilib
|
434
|
-
[loader.2] file:/System/Library/Java/Extensions/j3dcore.jar
|
435
|
-
[loader.2] file:/usr/lib/java/libjdns_sd.jnilib
|
436
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.9.M01-java/lib/neo4j-community/jars/neo4j-lucene-index-1.9.M01.jar
|
437
|
-
[loader.2] file:/System/Library/Java/Extensions/j3dutils.jar
|
438
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.9.M01-java/lib/neo4j-community/jars/org.apache.servicemix.bundles.jline-0.9.94_1.jar
|
439
|
-
[loader.2] file:/System/Library/Java/Extensions/jai_core.jar
|
440
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.9.M01-java/lib/neo4j-community/jars/server-api-1.9.M01.jar
|
441
|
-
[loader.2] file:/System/Library/Java/Extensions/jai_codec.jar
|
442
|
-
[bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/charsets.jar
|
443
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.9.M01-java/lib/neo4j-community/jars/neo4j-graph-algo-1.9.M01.jar
|
444
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.9.M01-java/lib/neo4j-community/jars/geronimo-jta_1.1_spec-1.1.1.jar
|
445
|
-
[loader.2] file:/Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/ext/sunjce_provider.jar
|
446
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.9.M01-java/lib/neo4j-community/jars/neo4j-kernel-1.9.M01.jar
|
447
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.9.M01-java/lib/neo4j-community/jars/concurrentlinkedhashmap-lru-1.3.1.jar
|
448
|
-
[loader.2] file:/Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/ext/sunpkcs11.jar
|
449
|
-
[loader.2] file:/System/Library/Java/Extensions/AppleScriptEngine.jar
|
450
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.9.M01-java/lib/neo4j-community/jars/neo4j-shell-1.9.M01.jar
|
451
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.9.M01-java/lib/neo4j-community/jars/neo4j-graph-matching-1.9.M01.jar
|
452
|
-
[bootstrap] /Users/andreasronge/.rvm/rubies/jruby-1.6.7/lib/jruby.jar
|
453
|
-
[loader.0] file:/Users/andreasronge/.rvm/gems/jruby-1.6.7/gems/neo4j-community-1.9.M01-java/lib/neo4j-community/jars/lucene-core-3.5.0.jar
|
454
|
-
[bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/jsse.jar
|
455
|
-
[bootstrap] /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib/resources.jar
|
456
|
-
2012-12-08 21:19:12.112+0000: Library path:
|
457
|
-
/Users/andreasronge/Library/Java/Extensions
|
458
|
-
/Library/Java/Extensions
|
459
|
-
/Network/Library/Java/Extensions
|
460
|
-
/System/Library/Java/Extensions
|
461
|
-
/usr/lib/java
|
462
|
-
/Users/andreasronge/projects/neo4j-core/lib
|
463
|
-
2012-12-08 21:19:12.112+0000: System.properties:
|
464
|
-
jruby.home = /Users/andreasronge/.rvm/rubies/jruby-1.6.7
|
465
|
-
sun.boot.library.path = /Library/Java/JavaVirtualMachines/1.7.0.jdk/Contents/Home/jre/lib
|
466
|
-
user.country.format = SE
|
467
|
-
gopherProxySet = false
|
468
|
-
path.separator = :
|
469
|
-
file.encoding.pkg = sun.io
|
470
|
-
user.country = US
|
471
|
-
sun.java.launcher = SUN_STANDARD
|
472
|
-
sun.os.patch.level = unknown
|
473
|
-
user.dir = /Users/andreasronge/projects/neo4j-core/lib
|
474
|
-
neo4j.ext.udc.source = neo4rb
|
475
|
-
jdk.home =
|
476
|
-
sun.jnu.encoding = UTF-8
|
477
|
-
jruby.memory.max = 500m
|
478
|
-
sun.management.compiler = HotSpot 64-Bit Tiered Compilers
|
479
|
-
http.nonProxyHosts = local|*.local|169.254/16|*.169.254/16
|
480
|
-
jffi.boot.library.path = /Users/andreasronge/.rvm/rubies/jruby-1.6.7/lib/native/Darwin
|
481
|
-
user.home = /Users/andreasronge
|
482
|
-
user.timezone = Europe/Stockholm
|
483
|
-
file.encoding = UTF-8
|
484
|
-
jruby.stack.max = 2048k
|
485
|
-
jruby.script = jruby
|
486
|
-
user.name = andreasronge
|
487
|
-
jruby.shell = /bin/sh
|
488
|
-
sun.java.command = org/jruby/Main /Users/andreasronge/.rvm/rubies/jruby-1.6.7/bin/irb
|
489
|
-
sun.arch.data.model = 64
|
490
|
-
user.language = en
|
491
|
-
awt.toolkit = sun.lwawt.macosx.LWCToolkit
|
492
|
-
file.separator = /
|
493
|
-
sun.io.unicode.encoding = UnicodeBig
|
494
|
-
sun.cpu.endian = little
|
495
|
-
socksNonProxyHosts = local|*.local|169.254/16|*.169.254/16
|
496
|
-
ftp.nonProxyHosts = local|*.local|169.254/16|*.169.254/16
|
497
|
-
sun.cpu.isalist =
|
498
|
-
2012-12-08 21:19:12.113+0000: Network information:
|
499
|
-
Interface en0:
|
500
|
-
address: fe80:0:0:0:baf6:b1ff:fe18:1b39%4
|
501
|
-
address: 192.168.1.14
|
502
|
-
Interface lo0:
|
503
|
-
address: 0:0:0:0:0:0:0:1
|
504
|
-
address: fe80:0:0:0:0:0:0:1%1
|
505
|
-
address: 127.0.0.1
|
506
|
-
2012-12-08 21:19:12.116+0000: --- INITIALIZED diagnostics END ---
|
507
|
-
2012-12-08 21:19:12.203+0000: [/Users/andreasronge/projects/neo4j-core/lib/db/neostore.relationshiptypestore.db.names] brickCount=0 brickSize=0b mappedMem=0b (storeSize=38b)
|
508
|
-
2012-12-08 21:19:12.207+0000: [/Users/andreasronge/projects/neo4j-core/lib/db/neostore.relationshiptypestore.db] brickCount=0 brickSize=0b mappedMem=0b (storeSize=0b)
|
509
|
-
2012-12-08 21:19:12.208+0000: [/Users/andreasronge/projects/neo4j-core/lib/db/neostore.propertystore.db.strings] brickCount=0 brickSize=136192b mappedMem=136314880b (storeSize=128b)
|
510
|
-
2012-12-08 21:19:12.209+0000: [/Users/andreasronge/projects/neo4j-core/lib/db/neostore.propertystore.db.index.keys] brickCount=0 brickSize=1026b mappedMem=1048576b (storeSize=38b)
|
511
|
-
2012-12-08 21:19:12.212+0000: [/Users/andreasronge/projects/neo4j-core/lib/db/neostore.propertystore.db.index] brickCount=0 brickSize=10485b mappedMem=1048576b (storeSize=0b)
|
512
|
-
2012-12-08 21:19:12.214+0000: [/Users/andreasronge/projects/neo4j-core/lib/db/neostore.propertystore.db.arrays] brickCount=0 brickSize=136192b mappedMem=136314880b (storeSize=128b)
|
513
|
-
2012-12-08 21:19:12.217+0000: [/Users/andreasronge/projects/neo4j-core/lib/db/neostore.propertystore.db] brickCount=0 brickSize=943697b mappedMem=94371840b (storeSize=0b)
|
514
|
-
2012-12-08 21:19:12.220+0000: [/Users/andreasronge/projects/neo4j-core/lib/db/neostore.relationshipstore.db] brickCount=0 brickSize=524271b mappedMem=52428800b (storeSize=0b)
|
515
|
-
2012-12-08 21:19:12.223+0000: [/Users/andreasronge/projects/neo4j-core/lib/db/neostore.nodestore.db] brickCount=0 brickSize=26208b mappedMem=26214400b (storeSize=9b)
|
516
|
-
2012-12-08 21:19:12.226+0000: [/Users/andreasronge/projects/neo4j-core/lib/db/neostore] brickCount=0 brickSize=0b mappedMem=0b (storeSize=54b)
|
517
|
-
2012-12-08 21:19:12.246+0000: Opened logical log [/Users/andreasronge/projects/neo4j-core/lib/db/nioneo_logical.log.1] version=1, lastTxId=1 (clean)
|
518
|
-
2012-12-08 21:19:12.256+0000: TM opening log: /Users/andreasronge/projects/neo4j-core/lib/db/tm_tx_log.1
|
519
|
-
2012-12-08 21:19:12.464+0000: Opened logical log [/Users/andreasronge/projects/neo4j-core/lib/db/index/lucene.log.1] version=1, lastTxId=1 (clean)
|
520
|
-
2012-12-08 21:19:12.468+0000: --- STARTED diagnostics for KernelDiagnostics:Versions START ---
|
521
|
-
2012-12-08 21:19:12.468+0000: Graph Database: org.neo4j.kernel.EmbeddedGraphDatabase StoreId[time:1345556613946, id:2509386930507999424, store version: 13561656364791302]
|
522
|
-
2012-12-08 21:19:12.468+0000: Kernel version: Neo4j - Graph Database Kernel 1.9.M01
|
523
|
-
2012-12-08 21:19:12.468+0000: Neo4j component versions:
|
524
|
-
2012-12-08 21:19:12.469+0000: Neo4j - Graph Database Kernel 1.9.M01
|
525
|
-
2012-12-08 21:19:12.469+0000: --- STARTED diagnostics for KernelDiagnostics:Versions END ---
|
526
|
-
2012-12-08 21:19:12.471+0000: --- STARTED diagnostics for NEO_STORE_VERSIONS START ---
|
527
|
-
2012-12-08 21:19:12.472+0000: Store versions:
|
528
|
-
Store versions:
|
529
|
-
NeoStore v0.A.0
|
530
|
-
NodeStore v0.A.0
|
531
|
-
RelationshipStore v0.A.0
|
532
|
-
RelationshipTypeStore v0.A.0
|
533
|
-
PropertyStore v0.A.0
|
534
|
-
PropertyIndexStore v0.A.0
|
535
|
-
StringPropertyStore v0.A.0
|
536
|
-
ArrayPropertyStore v0.A.0
|
537
|
-
2012-12-08 21:19:12.472+0000: --- STARTED diagnostics for NEO_STORE_VERSIONS END ---
|
538
|
-
2012-12-08 21:19:12.472+0000: --- STARTED diagnostics for NEO_STORE_ID_USAGE START ---
|
539
|
-
2012-12-08 21:19:12.472+0000: Id usage:
|
540
|
-
Id usage:
|
541
|
-
NodeStore: used=1 high=0
|
542
|
-
RelationshipStore: used=0 high=-1
|
543
|
-
RelationshipTypeStore: used=0 high=-1
|
544
|
-
PropertyStore: used=0 high=-1
|
545
|
-
PropertyIndexStore: used=0 high=-1
|
546
|
-
StringPropertyStore: used=1 high=0
|
547
|
-
ArrayPropertyStore: used=1 high=0
|
548
|
-
2012-12-08 21:19:12.472+0000: --- STARTED diagnostics for NEO_STORE_ID_USAGE END ---
|
549
|
-
2012-12-08 21:19:12.473+0000: --- STARTED diagnostics for PERSISTENCE_WINDOW_POOL_STATS START ---
|
550
|
-
2012-12-08 21:19:12.473+0000: --- STARTED diagnostics for PERSISTENCE_WINDOW_POOL_STATS END ---
|
551
|
-
2012-12-08 21:19:12.473+0000: --- STARTED diagnostics for KernelDiagnostics:StoreFiles START ---
|
552
|
-
2012-12-08 21:19:12.473+0000: Disk space on partition (Total / Free / Free %): 250140434432 / 168834277376 / 32
|
553
|
-
Storage files: (filename : modification date - size)
|
554
|
-
active_tx_log: 2012-08-21T15:43:34+0200 - 11.00 B
|
555
|
-
index:
|
556
|
-
lucene-store.db: 2012-08-21T15:44:00+0200 - 40.00 B
|
557
|
-
lucene.log.1: 2012-12-08T22:19:12+0100 - 16.00 B
|
558
|
-
lucene.log.active: 2012-12-08T22:19:12+0100 - 4.00 B
|
559
|
-
lucene.log.v0: 2012-08-21T15:44:00+0200 - 16.00 B
|
560
|
-
- Total: 2012-12-08T22:19:12+0100 - 76.00 B
|
561
|
-
lock: 2012-12-08T22:19:12+0100 - 0.00 B
|
562
|
-
messages.log: 2012-12-08T22:19:12+0100 - 31.39 kB
|
563
|
-
neostore: 2012-12-08T22:19:12+0100 - 54.00 B
|
564
|
-
neostore.id: 2012-12-08T22:19:12+0100 - 9.00 B
|
565
|
-
neostore.nodestore.db: 2012-12-08T22:19:12+0100 - 9.00 B
|
566
|
-
neostore.nodestore.db.id: 2012-12-08T22:19:12+0100 - 9.00 B
|
567
|
-
neostore.propertystore.db: 2012-12-08T22:19:12+0100 - 0.00 B
|
568
|
-
neostore.propertystore.db.arrays: 2012-12-08T22:19:12+0100 - 128.00 B
|
569
|
-
neostore.propertystore.db.arrays.id: 2012-12-08T22:19:12+0100 - 9.00 B
|
570
|
-
neostore.propertystore.db.id: 2012-12-08T22:19:12+0100 - 9.00 B
|
571
|
-
neostore.propertystore.db.index: 2012-12-08T22:19:12+0100 - 0.00 B
|
572
|
-
neostore.propertystore.db.index.id: 2012-12-08T22:19:12+0100 - 9.00 B
|
573
|
-
neostore.propertystore.db.index.keys: 2012-12-08T22:19:12+0100 - 38.00 B
|
574
|
-
neostore.propertystore.db.index.keys.id: 2012-12-08T22:19:12+0100 - 9.00 B
|
575
|
-
neostore.propertystore.db.strings: 2012-12-08T22:19:12+0100 - 128.00 B
|
576
|
-
neostore.propertystore.db.strings.id: 2012-12-08T22:19:12+0100 - 9.00 B
|
577
|
-
neostore.relationshipstore.db: 2012-12-08T22:19:12+0100 - 0.00 B
|
578
|
-
neostore.relationshipstore.db.id: 2012-12-08T22:19:12+0100 - 9.00 B
|
579
|
-
neostore.relationshiptypestore.db: 2012-12-08T22:19:12+0100 - 0.00 B
|
580
|
-
neostore.relationshiptypestore.db.id: 2012-12-08T22:19:12+0100 - 9.00 B
|
581
|
-
neostore.relationshiptypestore.db.names: 2012-12-08T22:19:12+0100 - 38.00 B
|
582
|
-
neostore.relationshiptypestore.db.names.id: 2012-12-08T22:19:12+0100 - 9.00 B
|
583
|
-
nioneo_logical.log.1: 2012-12-08T22:19:12+0100 - 16.00 B
|
584
|
-
nioneo_logical.log.active: 2012-12-08T22:19:12+0100 - 4.00 B
|
585
|
-
nioneo_logical.log.v0: 2012-08-21T15:44:00+0200 - 16.00 B
|
586
|
-
tm_tx_log.1: 2012-12-08T22:19:12+0100 - 0.00 B
|
587
|
-
2012-12-08 21:19:12.479+0000: --- STARTED diagnostics for KernelDiagnostics:StoreFiles END ---
|
588
|
-
2012-12-08 21:19:12.481+0000: Started - database is now available
|
589
|
-
2012-12-08 21:19:12.482+0000: GC Monitor started.
|
590
|
-
2012-12-08 21:23:24.665+0000: Stopping - database is now unavailable
|
591
|
-
2012-12-08 21:23:24.670+0000: Closed log /Users/andreasronge/projects/neo4j-core/lib/db/index/lucene.log
|
592
|
-
2012-12-08 21:23:24.673+0000: TM shutting down
|
593
|
-
2012-12-08 21:23:24.674+0000: Closed log /Users/andreasronge/projects/neo4j-core/lib/db/nioneo_logical.log
|
594
|
-
2012-12-08 21:23:24.674+0000: /Users/andreasronge/projects/neo4j-core/lib/db/neostore.relationshiptypestore.db.names hit=0 miss=0 switches=0 ooe=0
|
595
|
-
2012-12-08 21:23:24.675+0000: /Users/andreasronge/projects/neo4j-core/lib/db/neostore.relationshiptypestore.db hit=0 miss=0 switches=0 ooe=0
|
596
|
-
2012-12-08 21:23:24.676+0000: /Users/andreasronge/projects/neo4j-core/lib/db/neostore.propertystore.db.strings hit=0 miss=0 switches=0 ooe=0
|
597
|
-
2012-12-08 21:23:24.677+0000: /Users/andreasronge/projects/neo4j-core/lib/db/neostore.propertystore.db.index.keys hit=1 miss=0 switches=0 ooe=0
|
598
|
-
2012-12-08 21:23:24.677+0000: /Users/andreasronge/projects/neo4j-core/lib/db/neostore.propertystore.db.index hit=1 miss=0 switches=0 ooe=0
|
599
|
-
2012-12-08 21:23:24.678+0000: /Users/andreasronge/projects/neo4j-core/lib/db/neostore.propertystore.db.arrays hit=0 miss=0 switches=0 ooe=0
|
600
|
-
2012-12-08 21:23:24.679+0000: /Users/andreasronge/projects/neo4j-core/lib/db/neostore.propertystore.db hit=1 miss=0 switches=0 ooe=0
|
601
|
-
2012-12-08 21:23:24.680+0000: /Users/andreasronge/projects/neo4j-core/lib/db/neostore.relationshipstore.db hit=0 miss=0 switches=0 ooe=0
|
602
|
-
2012-12-08 21:23:24.680+0000: /Users/andreasronge/projects/neo4j-core/lib/db/neostore.nodestore.db hit=1 miss=0 switches=0 ooe=0
|
603
|
-
2012-12-08 21:23:24.681+0000: /Users/andreasronge/projects/neo4j-core/lib/db/neostore hit=0 miss=17 switches=0 ooe=0
|
604
|
-
2012-12-08 21:23:24.682+0000: NeoStore closed
|
605
|
-
2012-12-08 21:23:24.682+0000: --- STOPPING diagnostics START ---
|
606
|
-
2012-12-08 21:23:24.682+0000: --- STOPPING diagnostics END ---
|
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
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1 +0,0 @@
|
|
1
|
-
RelationshipStore v0.A.0
|
Binary file
|
@@ -1 +0,0 @@
|
|
1
|
-
RelationshipTypeStore v0.A.0
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/lib/db/tm_tx_log.1
DELETED
Binary file
|