cookbook 'neo4j', '~> 1.0.6'
neo4j (8) Versions 1.0.6 Follow3
Installs/Configures neo4j
cookbook 'neo4j', '~> 1.0.6', :supermarket
knife supermarket install neo4j
knife supermarket download neo4j
neo4j Cookbook
This is a Chef cookbook to manage [Neo4j] (Community & Enterprise Edition).
Platforms
The following platforms and versions are tested and supported using test-kitchen
- CentOS 6.6, 7.1
- Debian 7.8, 8.1
- Ubuntu 12.04, 14.04
Other versions that should work fine but are not testing in [test-kitchen].
* Amazon Linux 2015-03
* RHEL >= 6.6
Java Attributes
This cookbook uses the java cookbook to install java. A wrapper cookbook can be used to change the default behaviour and install other flavours of the JDK and/or different versions.
Attributes
Wherever possible I use the default settings from Neo4j for the defaults in the attributes file.
-
node['neo4j']['release']
- Package version to install -
node['neo4j']['release_suffix']
- If the release version requires a suffix, add it here. Such as2.2.4-1
set it to '-1' -
node['neo4j']['edition']
- Valid values arecommunity
andenterprise
-
node['neo4j']['install_java']
- Boolean for if the neo4j cookbook should install java. Default:true
-
node['neo4j']['install_method']
- Valid values arepackage
ortarball
-
node['neo4j']['package']
- Name of package to install. You shouldn't need to change this -
node['neo4j']['service_action']
- Action to set neo4j service to. Type: Array -
node['neo4j']['notify_restart']
- Type: Boolean. If template updates should notify the neo4j service to restart or not -
node['neo4j']['cookbook']
- The cookbook used for configuration file template resources -
node['neo4j']['chef_backup']
- Type: Integer. Number of backups to keep for template resources
Tarball installation method specific attributes
-
node['neo4j']['tarball_url']
- URL used to download neo4j tarball -
node['neo4j']['tarball_checksum'][<version>][<edition>]
- Checksum used to verify tarball download -
node['neo4j']['parent_dir']
- Parent directory used -
node['neo4j']['install_dir']
- Directory that neo4j is installed into -
node['neo4j']['source_dir']
- Directory used to explode the tarball into
neo4j-server.properties
-
node['neo4j']['config']['neo4j-server.properties']['org.neo4j.server.database.location']
- location of the database directory -
node['neo4j']['config']['neo4j-server.properties']['org.neo4j.server.db.tuning.properties']
- Low-level graph tuning engine file -
node['neo4j']['config']['neo4j-server.properties']['org.neo4j.server.webserver.address']
- web server port -
node['neo4j']['config']['neo4j-server.properties']['dbms.security.auth_enabled']
- Enabled or disable auth to access neo4j -
node['neo4j']['config']['neo4j-server.properties']['org.neo4j.server.webserver.port']
- Web server port -
node['neo4j']['config']['neo4j-server.properties']['org.neo4j.server.webserver.https.enabled']
- Turn https support on/off -
node['neo4j']['config']['neo4j-server.properties']['org.neo4j.server.https.port']
- https port -
node['neo4j']['config']['neo4j-server.properties']['org.neo4j.server.webserver.https.cert.location']
- SSL cert location -
node['neo4j']['config']['neo4j-server.properties']['org.neo4j.server.webserver.https.key.location']
- SSL key location -
node['neo4j']['config']['neo4j-server.properties']['org.neo4j.server.webserver.https.keystore.location']
- keystore location -
node['neo4j']['config']['neo4j-server.properties']['org.neo4j.server.http.log.enabled']
- enable/disable http logging -
node['neo4j']['config']['neo4j-server.properties']['org.neo4j.server.http.log.config']
- http logging config -
node['neo4j']['config']['neo4j-server.properties']['org.neo4j.server.webadmin.rrdb.location']
- location of rrd database directory -
node['neo4j']['config']['neo4j-server.properties']['org.neo4j.server.webserver.max.request.header']
- Set maximum request header size. Introduced in 2.3.0. -
node['neo4j']['config']['neo4j-server.properties']['org.neo4j.server.webserver.max.response.header']
- Set maximum reqponse header size. Introduced in 2.3.0.
neo4j-server.properties
-
node['neo4j']['config']['neo4j.properties']['allow_store_upgrade']
- Enable this to be able to upgrade a store from an older version -
node['neo4j']['config']['neo4j.properties']['dbms.pagecache.memory']
- Set pagecache memory to use. Neo4j usually does a good job of figuring this out on its own -
node['neo4j']['config']['neo4j.properties']['cypher_parser_version']
- Enable this to specify a parser other than the default one -
node['neo4j']['config']['neo4j.properties']['keep_logical_logs']
- Keep logical logs -
node['neo4j']['config']['neo4j.properties']['node_auto_indexing']
- Enable auto-indexing for nodes -
node['neo4j']['config']['neo4j.properties']['node_keys_indexable']
- The node property keys to be auto-indexed -
node['neo4j']['config']['neo4j.properties']['relationship_auto_indexing']
- Enable auto-indexing for relationships -
node['neo4j']['config']['neo4j.properties']['relationship_keys_indexable']
- The relationship property keys to be auto-indexed, if enabled -
node['neo4j']['config']['neo4j.properties']['remote_shell_enabled']
- Enable shell server so that remote clients can connect via Neo4j shell -
node['neo4j']['config']['neo4j.properties']['remote_shell_host']
- The network interface IP the shell will listen on (use 0.0.0 for all interfaces) -
node['neo4j']['config']['neo4j.properties']['remote_shell_port']
- The port the shell will listen on -
node['neo4j']['config']['neo4j.properties']['cache_type']
- The type of cache to use for nodes and relationships. Depreciated in 2.3.0. -
node['neo4j']['config']['neo4j.properties']['allow_file_urls']
- Determines if Cypher will allow using file URLs when loading data using LOAD CSV -
node['neo4j']['config']['neo4j.properties']['dbms.cypher.min_replan_interval']
- The minimum lifetime of a query plan before a query is considered for replanning. -
node['neo4j']['config']['neo4j.properties']['dbms.cypher.planner']
- Set this to specify the default planner. -
node['neo4j']['config']['neo4j.properties']['dbms.querylog.enabled']
- Log executed queries that takes longer than the configured threshold. -
node['neo4j']['config']['neo4j.properties']['dbms.querylog.filename']
- The file where queries will be recorded. -
node['neo4j']['config']['neo4j.properties']['dbms.querylog.threshold']
- If the execution of query takes more time than this threshold, the query is logged - provided query logging is enabled. -
node['neo4j']['config']['neo4j.properties']['dbms.querylog.rotation.threshold']
- Specifies maximum number of history files to keep. Introduced in 2.3.0. -
node['neo4j']['config']['neo4j.properties']['dbms.querylog.rotation.threshold']
- Specifies at which file size the query log will autorotate. Introduced in 2.2.6. -
node['neo4j']['config']['neo4j.properties']['dense_node_threshold']
- Relationship count threshold for considering a node to be dense. -
node['neo4j']['config']['neo4j.properties']['dump_configuration']
- Print out the effective Neo4j configuration after startup. -
node['neo4j']['config']['neo4j.properties']['index_background_sampling_enabled']
- Enable or disable background index sampling. -
node['neo4j']['config']['neo4j.properties']['index_sampling_buffer_size']
- Size of buffer used by index sampling. -
node['neo4j']['config']['neo4j.properties']['index_sampling_update_percentage']
- Percentage of index updates of total index size required before sampling of a given index is triggered. -
node['neo4j']['config']['neo4j.properties']['logical_log_rotation_threshold']
- Specifies at which file size the logical log will auto-rotate. -
node['neo4j']['config']['neo4j.properties']['lucene_searcher_cache_size']
- The maximum number of open Lucene index searchers. -
node['neo4j']['config']['neo4j.properties']['query_cache_size']
- The number of Cypher query execution plans that are cached. -
node['neo4j']['config']['neo4j.properties']['read_only']
- Only allow read operations from this Neo4j instance. -
node['neo4j']['config']['neo4j.properties']['relationship_grab_size']
- How many relationships to read at a time during iteration. -
node['neo4j']['config']['neo4j.properties']['remote_logging_enabled']
- Whether to enable logging to a remote server or not. -
node['neo4j']['config']['neo4j.properties']['remote_logging_host']
- Host for remote logging using Logback SocketAppender. -
node['neo4j']['config']['neo4j.properties']['remote_logging_port']
- Port for remote logging using Logback SocketAppender. -
node['neo4j']['config']['neo4j.properties']['store_dir']
- The directory where the database files are located.
neo4j-wrapper.conf
-
node['neo4j']['config']['neo4j-wrapper.conf']['wrapper.java.additional']
- Array of arguements to pass to java -
node['neo4j']['config']['neo4j-wrapper.conf']['wrapper.java.initmemory']
- Set heap size -
node['neo4j']['config']['neo4j-wrapper.conf']['wrapper.java.maxmemory']
- Set heap size maximum -
node['neo4j']['config']['neo4j-wrapper.conf']['wrapper.pidfile']
- Set pidfile
Usage
neo4j::default
e.g.
Just include neo4j
in your node's run_list
:
{ "name":"my_node", "run_list": [ "recipe[neo4j]" ] }
Contributing
- Fork the repository on Github
- Create a named feature branch (like
add_component_x
) - Write your change
- Write tests for your change (if applicable)
- Run the tests, ensuring they all pass
- Submit a Pull Request using Github to the development branch
License and Authors
Authors: Chris Zeeb chris.zeeb@gmail.com and Contributors
Copyright:: 2015 Chris Zeeb <chris.zeeb@gmail.com> Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Dependent cookbooks
apt ~> 2.7 |
java ~> 1.31 |
yum ~> 3.2 |
Contingent cookbooks
There are no cookbooks that are contingent upon this one.
neo4j-cookbook CHANGELOG
This file is used to list changes made in each version of the neo4j cookbook.
1.0.6 / 2016-04-06
Added
- sha256 hashes for 2.3.3 release
Changed
- Updated Gemfile.lock
1.0.5 / 2016-02-23
Added
- sha256 hashes for 2.3.2 release
Changed
- Updated Gemfile.lock
- Fixed rubocop violations
1.0.4 / 2015-12-02
Fixed
- Version constraints for cookbook dependencies loosened to make them play nice with other cookbook dependencies.
- Package lsof not always existing on EPEL installs. It is required by the tarball installation.
1.0.3 / 2015-11-26
Added
- Tests for Chef 11.10, the version of Chef that AWS Opsworks uses
- sha256 hashes for 2.2.7, and 2.3.1 releases
Changed
- Updated Gemfile.lock
- Test Kitchen for latest release changed to tarball from package installation method so that new hashes can more easily be tested
1.0.2 / 2015-10-26
Added
- sha256 hashes for 2.2.5, 2.2.6, and 2.3.0 releases
- New configuration options introduced in 2.2.6 and 2.3.0 releases
1.0.1 / 2015-09-03
Fixed
- Minor issue with README formatting where a merge conflict wasn't fully resolved.
1.0.0 / 2015-09-03
Added
- Package install support for
rhel
platform family - yum repository resource for
rhel
platform family - Attributes for
yum/apt
resources - Support for
tarball
based installation chefignore
- Support for
enterprise
edition tarball installation - Support for
enterprise
edition package installation -
rake
tasks - Resources for core directory locations
Changed
- default version installed updated from 2.2.3 to 2.2.4
-
java
setup optional - Move
configuration
files attributes todefault['neo4j']['config']['...']
- Render
configuration
files attributes instead of managing individual parameters - Update
.gitignore
for common patterns - Resource attribute
backup
configurable with default value5
- Define global
user/group
node attributes instead of hardcoding for various resources -
node['ipaddress']
instead for config parameterdefault['neo4j']['config']['neo4j-server.properties']['org.neo4j.server.webserver.address']
- Restrict
java
heap size to 32G limit
Fixed
-
ulimit
warning for init.d scripts
0.1.0 / 2015-06-06
- Initial release of neo4j-cookbook
Collaborator Number Metric
1.0.6 failed this metric
Failure: Cookbook has 0 collaborators. A cookbook must have at least 2 collaborators to pass this metric.
Contributing File Metric
1.0.6 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file
Foodcritic Metric
1.0.6 failed this metric
FC066: Ensure chef_version is set in metadata: neo4j/metadata.rb:1
FC069: Ensure standardized license defined in metadata: neo4j/metadata.rb:1
Run with Foodcritic Version 16.3.0 with tags metadata,correctness ~FC031 ~FC045 and failure tags any
No Binaries Metric
1.0.6 passed this metric
Testing File Metric
1.0.6 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
1.0.6 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number
1.0.6 failed this metric
1.0.6 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file
Foodcritic Metric
1.0.6 failed this metric
FC066: Ensure chef_version is set in metadata: neo4j/metadata.rb:1
FC069: Ensure standardized license defined in metadata: neo4j/metadata.rb:1
Run with Foodcritic Version 16.3.0 with tags metadata,correctness ~FC031 ~FC045 and failure tags any
No Binaries Metric
1.0.6 passed this metric
Testing File Metric
1.0.6 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
1.0.6 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number
1.0.6 failed this metric
FC069: Ensure standardized license defined in metadata: neo4j/metadata.rb:1
Run with Foodcritic Version 16.3.0 with tags metadata,correctness ~FC031 ~FC045 and failure tags any
1.0.6 passed this metric
Testing File Metric
1.0.6 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file
Version Tag Metric
1.0.6 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number
1.0.6 failed this metric
1.0.6 failed this metric
Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number