https://github.com/thinkaurelius/titan
Revision 81e9193ace9ee64e71732be6b490ad8b4b7a3c0e authored by Dan LaRocque on 18 April 2014, 23:38:39 UTC, committed by Dan LaRocque on 18 April 2014, 23:38:39 UTC
1 parent 6136a90
Raw File
Tip revision: 81e9193ace9ee64e71732be6b490ad8b4b7a3c0e authored by Dan LaRocque on 18 April 2014, 23:38:39 UTC
[maven-release-plugin] prepare release 0.4.3
Tip revision: 81e9193
UPGRADE.textile
Please follow these instructions when upgrading from an older Titan release.

h2. Titan 0.y.z

h3. Version 0.4.2 (December 30, 2013) and Version 0.4.3 (April 21, 2013)

h4. From 0.4.1

Titan 0.4.2 is compatible with 0.4.1 and no special upgrade is necessary.

h4. From 0.4.0

Titan 0.4.2 can read and write databases created by 0.4.0, but 0.4.0 can't necessarily read new types created by 0.4.2.  When carrying out a rolling upgrade from 0.4.0 to 0.4.2, the 0.4.2 instances must not create new types.

h3. Version 0.4.1 (November 24, 2013)

h4. From 0.4.0

h5. Data Upgrade

Titan 0.4.1 is fully backwards compatible to Titan 0.4.0 on the data layer. No need to reload or upgrade the data. However, once
new types are added to the database through Titan 0.4.1, older versions of Titan cannot read those newly added types.
Hence, ensure that all instances of Titan that are accessing the same storage backend are updated before adding new types. Note,
that you can have mixed Titan 0.4.0 and 0.4.1 instances reading from the cluster as long as the latter don't add new types.

h5. API Text Search Changes

Titan 0.4.1 provides some new features that have extended the API, however, those do not break the existing API. There is one change to the API that requires updating. We changed the Text.PREFIX/REGEX to Text.CONTAINS_PREFIX/REGEX to make is obvious what the semantics of those predicates is.

If you are using either of those predicate, rename:

* Text.PREFIX -> Text.CONTAINS_PREFIX
* Text.REGEX -> Text.CONTAINS_REGEX

h5. Version compatibility check

In Titan 0.4.1 we are storing all Titan flags in the storage backend (i.e. no more local properties file in the data directory).
This means, that Titan 0.4.1 will rewrite this flag and ignore its current value. This disables the version compatibility check.
Hence, make sure that you are running Titan 0.4.1 against a 0.4.0 or newer database. Running it against older versions of Titan will not cause an immediate exception but undetermined behavior down the road.

h5. HBase Bugfix Version Increment

Titan's tested version of HBase has been updated from 0.94.7 in Titan 0.4.0 to 0.94.12 in Titan 0.4.1.  "These HBase versions are binary compatible":http://hbase.apache.org/book.html#hbase.binary.compatibility.  According to HBase's versioning policy, code and data using .7 should interoperate seamlessly with .12.  Furthermore, HBase supports rolling upgrades between these versions.  HBase's changelog lists all of the intervening releases as "bugfix releases":https://issues.apache.org/jira/browse/HBASE?report=com.atlassian.jira.plugin.system.project:changelog-panel.

h3. Version 0.4.0 (October 16, 2013)

h4. Data Upgrade

Titan 0.4.0 is incompatible with previous releases. No upgrade process available from previous versions of Titan yet.
Please check the mailing list for updates on the upgrade process.

h4. API TypeMaker Changes

When upgrading code from previous versions of Titan, please note, that the TypeMaker API has changed significantly.
Use 'makeKey' and 'makeLabel' to define keys and labels respectively instead of 'makeType'. Those methods expect the name
of the type as the argument. Furthermore, primaryKey() has been renamed to sortKey() and uniqueness has been renamed:

* For Titan keys:
** @unique()@ replaces @unique(Direction.IN)@
** @single()@ replaces @unique(Direction.OUT)@
** use @list()@ to allow multiple properties for the key
* For Titan labels:
** @oneToMany()@ replaces @unique(Direction.IN)@
** @manyToOne()@ replaces @unique(Direction.OUT)@
** @oneToOne()@ replaces @unique(Direction.IN).unique(Direction.OUT)@

h4. Rexster Server

Rexster Server configuration and dependencies have been moved into the new module titan-rexster and are no longer part of titan-core

h4. Custom Attribute Serializer

The interface has been extended by method to a) verify that the provided value is valid and b) automatically convert the value if possible.
These methods are required which means that any implementation of AttributeSerializer must be updated.

h4. Type Groups

Type Groups have been removed. Use sortKey instead to group under one label or key.

h3. Version 0.3.2 (July 29, 2013)

h4. From 0.3.1

Titan 0.3.2 is compatible with 0.3.1 and no special upgrade is necessary.

h4. From 0.3.0

Titan 0.3.2 is compatible with 0.3.0 and no special upgrade is necessary unless Elasticsearch is used.  If you are using Elasticsearch, please see the notes on upgrading to 0.3.1 from 0.3.0 below.

h4. From prior versions

Titan 0.3.2 is incompatible with earlier versions of Titan.  Read below for more information.

h3. Version 0.3.1 (May 14, 2013)

h4. From 0.3.0

Titan 0.3.1 is compatible with 0.3.0 and no special upgrade is necessary unless Elasticsearch is used as a storage backend. Titan 0.3.1 uses Elasticsearch 0.90.0 whereas Titan 0.3.0 uses Elasticsearch 0.20.6. 

If you are using Elasticsearch, please follow the "upgrade instructions for Elasticsearch":http://www.elasticsearch.org/download/ which are summarized as follows:
* Elasticsearch 0.90.0 is the first stable release based on Lucene 4. We recommend testing the upgrade before doing it in production.
* Upgrading from 0.20.x requires a full cluster restart.
* In order to be able to downgrade, stop indexing new data, issue a flush request, do the upgrade and only enable indexing of new data once you are certain that you no longer need to downgrade.  Once new data has been indexed, downgrading is no longer possible. To be extra safe, back up your data before upgrading.

Note, that these instructions apply to the Elasticsearch cluster only and not the Titan cluster or the Titan storage cluster.

h4. From prior versions

Titan 0.3.1 is incompatible with earlier versions of Titan. Read below for more information.

h3. Version 0.3.0 (March 29, 2013)

h4. From prior versions

Titan 0.3.0 is incompatible with prior versions of Titan. The upgrade process is in development and not yet available.

When upgrading to Titan 0.3.0, please note the following interface changes:

* In @TypeMaker@, @functional()@ has been replaced by @unique(Direction.OUT)@. Likewise, @functional(boolean)@ has been replaced by @unique(Direction.OUT, UniquenessConsistency)@, where the argument @true@ corresponds to @UniquenessConsistency.LOCK@ and @false@ corresponds to @UniquenessConsistency.NO_LOCK@.
* In @TypeMaker@, @unique()@ for property keys has been replaced by @unique(Direction.IN)@.
* In @TypeMaker@, @indexed()@ takes additional arguments because Titan now supports vertex _and_ edge indexing. Use @indexed(Class<? extends Element>)@ to create a standard index for the key. Use @indexed(String,Class<? extends Element>)@ to create an external index for the key.
* In @TypeMaker@, @simple()@ is no longer available. Simply remove it.
* In @TitanFactory@, @openInMemoryGraph()@ is no longer available. Instead, use @open(Configuration)@ where the configuration sets @storage.backend=inmemory@.
* In @AttributeSerializer@, @writeObjectData()@ now uses @DataOutput@ to write elements instead of @ByteBuffer@. A simple replace in any particular implementation of @AttributeSerializer@ should do the trick.

h3. Version 0.2.1 (March 22, 2013)

h4. From Version 0.2.0

No special upgrade necessary. Since 0.2.1 has upgraded to Blueprints 2.3.0, there are some incompatible interface changes. In particular, @Graph.startTransaction()@ has been renamed to @Graph.newTransaction()@. Please refer to the "Blueprints documentation":https://github.com/tinkerpop/blueprints/wiki for more information.

h4. From prior versions

Upgrade to 0.2.0 first as described below.

h3. Version 0.2.0 (December 27, 2012)

h4. From Version 0.1.0

# Shut down all running instances of Titan. If the storage backend is Cassandra or HBase, do not shut down the respective storage backend but leave it running. So, only terminate the Titan processes.
# Create a backup of the storage backend. For BerkeleyDB, simply archive the contents of the storage directory. For "Cassandra":http://www.datastax.com/docs/1.0/operations/backup_restore and "HBase":http://hbase.apache.org/book/ops.backup.html, follow the directions for the respective backup functionalities. Store the backup in a secure place.
# Download and unzip Titan 0.2.0 on the (or one of the) machines that has been running Titan previously.
# Execute the upgrade010to020.sh/bat script in the bin directory of Titan 0.2.0 with the file name of the Titan configuration file (i.e. the argument passed into @TitanFactory.open()@) as the only argument. Follow the instructions. If asked to confirm the id block size, please ensure that the displayed value matches your configuration. If you did not configure this value, simply enter yes. Ensure that the script completes successfully.
# Install Titan 0.2.0 on all machines. Start Titan 0.2.0. Only use the 0.2.0 version of Titan from this point on.

h3. Version 0.1.0 (September 7, 2012)

h4. From Version 0.1-SNAPSHOT

# Shut down all running instances of Titan prior to upgrading ALL instances to the current release to avoid data corruption.

==<hr/>==
back to top