mirror of https://github.com/apache/cassandra
Version and licenses for 2.0.10 release
This commit is contained in:
parent
5bd37b92d2
commit
cd37d07baf
|
|
@ -30,3 +30,4 @@ examples/triggers/conf/*
|
||||||
examples/hadoop_word_count/conf/log4j.properties
|
examples/hadoop_word_count/conf/log4j.properties
|
||||||
pylib/cqlshlib/test/**
|
pylib/cqlshlib/test/**
|
||||||
src/resources/org/apache/cassandra/config/version.properties
|
src/resources/org/apache/cassandra/config/version.properties
|
||||||
|
**/hotspot_compiler
|
||||||
|
|
|
||||||
5
NEWS.txt
5
NEWS.txt
|
|
@ -14,13 +14,12 @@ restore snapshots created with the previous major version using the
|
||||||
using the provided 'sstableupgrade' tool.
|
using the provided 'sstableupgrade' tool.
|
||||||
|
|
||||||
2.0.10
|
2.0.10
|
||||||
====
|
======
|
||||||
New features
|
New features
|
||||||
------------
|
------------
|
||||||
- CqlPaginRecordReader and CqlPagingInputFormat have both been removed.
|
- CqlPaginRecordReader and CqlPagingInputFormat have both been removed.
|
||||||
Use CqlInputFormat instead.
|
Use CqlInputFormat instead.
|
||||||
- If you are using Leveled Compaction, you can now disable doing
|
- If you are using Leveled Compaction, you can now disable doing size-tiered
|
||||||
size-tiered
|
|
||||||
compaction in L0 by starting Cassandra with -Dcassandra.disable_stcs_in_l0
|
compaction in L0 by starting Cassandra with -Dcassandra.disable_stcs_in_l0
|
||||||
(see CASSANDRA-6621 for details).
|
(see CASSANDRA-6621 for details).
|
||||||
- Shuffle and taketoken have been removed. For clusters that choose to
|
- Shuffle and taketoken have been removed. For clusters that choose to
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
<property name="debuglevel" value="source,lines,vars"/>
|
<property name="debuglevel" value="source,lines,vars"/>
|
||||||
|
|
||||||
<!-- default version and SCM information -->
|
<!-- default version and SCM information -->
|
||||||
<property name="base.version" value="2.0.9"/>
|
<property name="base.version" value="2.0.10"/>
|
||||||
<property name="scm.connection" value="scm:git://git.apache.org/cassandra.git"/>
|
<property name="scm.connection" value="scm:git://git.apache.org/cassandra.git"/>
|
||||||
<property name="scm.developerConnection" value="scm:git://git.apache.org/cassandra.git"/>
|
<property name="scm.developerConnection" value="scm:git://git.apache.org/cassandra.git"/>
|
||||||
<property name="scm.url" value="http://git-wip-us.apache.org/repos/asf?p=cassandra.git;a=tree"/>
|
<property name="scm.url" value="http://git-wip-us.apache.org/repos/asf?p=cassandra.git;a=tree"/>
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,9 @@
|
||||||
|
cassandra (2.0.10) unstable; urgency=medium
|
||||||
|
|
||||||
|
* New release
|
||||||
|
|
||||||
|
-- Sylvain Lebresne <slebresne@apache.org> Fri, 08 Aug 2014 10:50:44 +0200
|
||||||
|
|
||||||
cassandra (2.0.9) unstable; urgency=medium
|
cassandra (2.0.9) unstable; urgency=medium
|
||||||
|
|
||||||
* New release
|
* New release
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,20 @@
|
||||||
|
/*
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you 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.
|
||||||
|
*/
|
||||||
package org.apache.cassandra.hadoop.pig;
|
package org.apache.cassandra.hadoop.pig;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,20 @@
|
||||||
|
/*
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you 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.
|
||||||
|
*/
|
||||||
package org.apache.cassandra.cql3;
|
package org.apache.cassandra.cql3;
|
||||||
|
|
||||||
import org.apache.cassandra.SchemaLoader;
|
import org.apache.cassandra.SchemaLoader;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue