HOWTO
Here’s some miscellaneous documentation about using Calcite and its various adapters.
- Building from a source distribution
- Building from Git
- Gradle vs the Gradle Wrapper
- Upgrade Gradle and the Gradle Wrapper
- Running tests
- Running integration tests
- Contributing
- Getting started
- Setting up an IDE for contributing
- Tracing
- Debugging generated classes in Intellij
- CSV adapter
- MongoDB adapter
- Splunk adapter
- Implementing an adapter
- Advanced topics for developers
-
Advanced topics for committers
- Managing Calcite repositories through GitHub
- Merging pull requests
- Set up PGP signing keys
- Set up Nexus repository credentials
- Making a snapshot
- Making a release candidate
- Cleaning up after a failed release attempt
- Validating a release
- Get approval for a release via Apache voting process
- Publishing a release
- Publishing the web site
- Advanced topics for PMC members
Building from a source distribution
Prerequisite is Java (JDK 8, 11, 17, 21 or 23) and Gradle (version 8.7) on your path.
Unpack the source distribution .tar.gz
file,
cd
to the root directory of the unpacked source,
then build using Gradle:
Running tests describes how to run more or fewer
tests (but you should use the gradle
command rather than
./gradlew
).
Building from Git
Prerequisites are git and Java (JDK 8, 11, 17, 21 or 23) on your path.
Create a local copy of the GitHub repository,
cd
to its root directory,
then build using the included Gradle wrapper:
Calcite includes a number of machine-generated codes. By default, these are regenerated on every build, but this has the negative side-effect of causing a re-compilation of the entire project when the non-machine-generated code has not changed.
Typically re-generation is called automatically when the relevant templates
are changed, and it should work transparently.
However, if your IDE does not generate sources (e.g. core/build/javacc/javaCCMain/org/apache/calcite/sql/parser/impl/SqlParserImpl.java
),
then you can call ./gradlew generateSources
tasks manually.
Running tests describes how to run more or fewer tests.
Gradle vs the Gradle Wrapper
Calcite uses the Gradle Wrapper to make a consistent build environment.
In the typical case you don’t need to install Gradle manually, and
./gradlew
downloads the proper version for you and verify the expected checksum.
If you like, you can install Gradle manually, but be aware that is might cause a version mismatch.
For more information about Gradle, check the following links: Gradle five things; Gradle multi-project builds.
Upgrade Gradle and the Gradle Wrapper
Gradle’s documentation provides detailed information about how to upgrade Gradle. Here is a list of steps:
- Run
./gradlew help --warning-mode=all
to find out whether you are using any deprecated features. - Fix the deprecations and repeat the previous step to confirm they are fixed. This is a step where Gradle doc could be very helpful since it contains info about deprecations and how to cope with them.
- Run
./gradlew wrapper --gradle-version=<new_gradle_version> --gradle-distribution-sha256-sum=<distribution-sum>
to upgrade Gradle. Checksum should be taken from Gradle release checksums. - Check and update Kotlin version in
gradle.properties
if required. Check should be done against Kotlin compatibility matrix. - Step 3 will have removed the header from
gradle/wrapper/gradle-wrapper.properties
, so now run./gradlew autostyleApply
to add it back. - Check the updated Gradle version and checksum in
gradle/wrapper/gradle-wrapper.properties
against the official Gradle release checksums. - Try to build the project and run tests; debug any errors using the Troubleshooting Guide.
- Update the Gradle version in this howto.
Running tests
The test suite will run by default when you build, unless you specify
-x test
You can use ./gradlew assemble
to build the artifacts and skip all tests and verifications.
There are other options that control which tests are run, and in what environment, as follows.
-
-Dcalcite.test.db=DB
(where DB ish2
,hsqldb
,mysql
, orpostgresql
) allows you to change the JDBC data source for the test suite. Calcite’s test suite requires a JDBC data source populated with the foodmart data set.-
hsqldb
, the default, uses an in-memory hsqldb database. - All others access a test virtual machine
(see integration tests below).
mysql
andpostgresql
might be somewhat faster than hsqldb, but you need to populate it (i.e. provision a VM).
-
-
-Dcalcite.debug
prints extra debugging information to stdout. -
-Dcalcite.test.splunk
enables tests that run against Splunk. Splunk must be installed and running. -
./gradlew testSlow
runs tests that take longer to execute. For example, there are tests that create virtual TPC-H and TPC-DS schemas in-memory and run tests from those benchmarks.
Note: tests are executed in a forked JVM, so system properties are not passed automatically
when running tests with Gradle.
By default, the build script passes the following -D...
properties
(see passProperty
in build.gradle.kts
):
java.awt.headless
-
junit.jupiter.execution.parallel.enabled
, default:true
-
junit.jupiter.execution.timeout.default
, default:5 m
-
user.language
, default:TR
-
user.country
, default:tr
-
calcite.**
(to enablecalcite.test.db
and others above)
Running integration tests
For testing Calcite’s external adapters, a test virtual machine should be used. The VM includes Cassandra, Druid, H2, HSQLDB, MySQL, MongoDB, and PostgreSQL.
Test VM requires 5GiB of disk space and it takes 30 minutes to build.
Note: you can use calcite-test-dataset to populate your own database, however it is recommended to use test VM so the test environment can be reproduced.
VM preparation
0) Install dependencies: Vagrant and VirtualBox
1) Clone https://github.com/vlsi/calcite-test-dataset.git at the same level as calcite repository. For instance:
Note: integration tests search for ../calcite-test-dataset or ../../calcite-test-dataset. You can specify full path via calcite.test.dataset system property.
2) Build and start the VM:
VM management
Test VM is provisioned by Vagrant, so regular Vagrant vagrant up
and vagrant halt
should be used to start and stop the VM.
The connection strings for different databases are listed in calcite-test-dataset readme.
Suggested test flow
Note: test VM should be started before you launch integration tests. Calcite itself does not start/stop the VM.
Command line:
- Executing regular unit tests (does not require external data): no change.
./gradlew test
or./gradlew build
. - Executing all tests, for all the DBs:
./gradlew test integTestAll
. - Executing just tests for external DBs, excluding unit tests:
./gradlew integTestAll
- Executing PostgreSQL JDBC tests:
./gradlew integTestPostgresql
- Executing just MongoDB tests:
./gradlew :mongo:build
From within IDE:
- Executing regular unit tests: no change.
- Executing MongoDB tests: run
MongoAdapterTest.java
withcalcite.integrationTest=true
system property - Executing MySQL tests: run
JdbcTest
andJdbcAdapterTest
with setting-Dcalcite.test.db=mysql
- Executing PostgreSQL tests: run
JdbcTest
andJdbcAdapterTest
with setting-Dcalcite.test.db=postgresql
Integration tests technical details
Tests with external data are executed during Gradle’s integration-test phase.
We do not currently use pre-integration-test/post-integration-test, however, we could use that in the future.
The verification of build pass/failure is performed during the verify phase.
Integration tests should be named ...IT.java
, so they are not picked up on unit test execution.
Contributing
See the developers guide.
Getting started
See the developers guide.
Setting up an IDE for contributing
Setting up IntelliJ IDEA
Download a version of IntelliJ IDEA greater than (2018.X). Versions 2019.2, and 2019.3 have been tested by members of the community and appear to be stable. Older versions of IDEA may still work without problems for Calcite sources that do not use the Gradle build (release 1.21.0 and before).
Follow the standard steps for the installation of IDEA and set up one of the JDK versions currently supported by Calcite.
Start with building Calcite from the command line.
Go to File > Open… and open up Calcite’s root build.gradle.kts
file.
When IntelliJ asks if you want to open it as a project or a file, select project.
Also, say yes when it asks if you want a new window.
IntelliJ’s Gradle project importer should handle the rest.
There is a partially implemented IntelliJ code style configuration that you can import located on GitHub. It does not do everything needed to make Calcite’s style checker happy, but it does a decent amount of it. To import, go to Preferences > Editor > Code Style, click the gear next to “scheme”, then Import Scheme > IntelliJ IDEA Code Style XML.
Once the importer is finished, test the project setup.
For example, navigate to the method JdbcTest.testWinAgg
with
Navigate > Symbol and enter testWinAgg
. Run testWinAgg
by right-clicking and selecting Run (or the equivalent keyboard shortcut).
Setting up NetBeans
From the main menu, select File > Open Project and navigate to a name of the project (Calcite) with a small Gradle icon, and choose to open. Wait for NetBeans to finish importing all dependencies.
To ensure that the project is configured successfully, navigate to the method testWinAgg
in org.apache.calcite.test.JdbcTest
.
Right-click on the method and select to Run Focused Test Method.
NetBeans will run a Gradle process, and you should see in the command output window a line with
Running org.apache.calcite.test.JdbcTest
followed by "BUILD SUCCESS"
.
Note: it is not clear if NetBeans automatically generates relevant sources on project import,
so you might need to run ./gradlew generateSources
before importing the project (and when you
update template parser sources, and project version)
Tracing
To enable tracing, add the following flags to the java command line:
-Dcalcite.debug=true
The first flag causes Calcite to print the Java code it generates (to execute queries) to stdout. It is especially useful if you are debugging mysterious problems like this:
Exception in thread "main" java.lang.ClassCastException: Integer cannot be cast to Long
at Baz$1$1.current(Unknown Source)
By default, Calcite uses the Log4j bindings for SLF4J. There is a provided configuration
file which outputs logging at the INFO level to the console in core/src/test/resources/log4j.properties
.
You can modify the level for the rootLogger to increase verbosity or change the level
for a specific class if you so choose.
Debugging generated classes in Intellij
Calcite uses Janino to generate Java code. The generated classes can be debugged interactively (see the Janino tutorial).
To debug generated classes, set two system properties when starting the JVM:
-Dorg.codehaus.janino.source_debugging.enable=true
-
-Dorg.codehaus.janino.source_debugging.dir=C:\tmp
(This property is optional; if not set, Janino will create temporary files in the system’s default location for temporary files, such as/tmp
on Unix-based systems.)
After code is generated, either go into Intellij and mark the folder that
contains generated temporary files as generated sources root or sources root,
or directly set the value of org.codehaus.janino.source_debugging.dir
to an
existing source root when starting the JVM.
CSV adapter
See the tutorial.
MongoDB adapter
First, download and install Calcite, and install MongoDB.
Note:
- You can use MongoDB from the integration test virtual machine above.
- The MongoDB adapter is not suited for querying nested documents.
- The MongoDB adapter currently only supports a very limited set of filter push downs.
Import MongoDB’s zipcode data set into MongoDB:
Log into MongoDB to check it’s there:
Connect using the mongo-model.json Calcite model:
Splunk adapter
To run the test suite and sample queries against Splunk,
load Splunk’s tutorialdata.zip
data set as described in
the Splunk tutorial.
(This step is optional, but it provides some interesting data for the sample
queries. It is also necessary if you intend to run the test suite, using
-Dcalcite.test.splunk=true
.)
Implementing an adapter
New adapters can be created by implementing CalcitePrepare.Context
:
Testing adapter in Java
The example below shows how SQL query can be submitted to
CalcitePrepare
with a custom context (AdapterContext
in this
case). Calcite prepares and implements the query execution, using the
resources provided by the Context
. CalcitePrepare.PrepareResult
provides access to the underlying enumerable and methods for
enumeration. The enumerable itself can naturally be some adapter
specific implementation.
Advanced topics for developers
The following sections might be of interest if you are adding features to particular parts of the code base. You don’t need to understand these topics if you are just building from source and running tests.
JavaTypeFactory
When Calcite compares types (instances of RelDataType
), it requires them to be the same
object. If there are two distinct type instances that refer to the
same Java type, Calcite may fail to recognize that they match. It is
recommended to:
- Use a single instance of
JavaTypeFactory
within the calcite context; - Store the types so that the same object is always returned for the same type.
Rebuilding generated Protocol Buffer code
Calcite’s Avatica Server component supports RPC serialization using Protocol Buffers. In the context of Avatica, Protocol Buffers can generate a collection of messages defined by a schema. The library itself can parse old serialized messages using a new schema. This is highly desirable in an environment where the client and server are not guaranteed to have the same version of objects.
Typically, the code generated by the Protocol Buffers library doesn’t need to be re-generated only every build, only when the schema changes.
First, install Protobuf 3.0:
Then, re-generate the compiled code:
Create a planner rule
Create a class that extends RelRule
(or occasionally a sub-class).
The class name should indicate the basic RelNode types that are matched,
sometimes followed by what the rule does, then the word Rule
.
Examples: ProjectFilterTransposeRule
, FilterMergeRule
.
The rule must have a constructor that takes a Config
as an argument.
It should be protected
, and will only be called from Config.toRule()
.
The class must contain an interface called Config
that extends
RelRule.Config
(or the config of the rule’s super-class).
Config
must implement the toRule
method and create a rule.
Config
must have a member called DEFAULT
that creates a typical
configuration. At a minimum, it must call withOperandSupplier
to create
a typical tree of operands.
The rule should not have a static INSTANCE
field.
There should be an instance of the rule in a holder class such as CoreRules
or EnumerableRules
:
The holder class may contain other instances of the rule with different parameters, if they are commonly used.
If the rule is instantiated with several patterns of operands
(for instance, with different sub-classes of the same base RelNode classes,
or with different predicates) the config may contain a method withOperandFor
to make it easier to build common operand patterns.
(See FilterAggregateTransposeRule
for an example.)
Advanced topics for committers
The following sections are of interest to Calcite committers and in particular release managers.
Managing Calcite repositories through GitHub
Committers have write access to Calcite’s ASF git repositories hosting the source code of the project as well as the website.
All repositories present on GitBox are available on GitHub with write-access enabled, including rights to open/close/merge pull requests and address issues.
In order to exploit the GitHub services, committers should link their ASF and GitHub accounts via the account linking page.
Here are the steps:
- Set your GitHub username into your Apache profile.
- Enable GitHub 2FA on your GitHub account.
- Activating GitHub 2FA changes the authentication process and may affect the way you access GitHub. You may need to establish personal access tokens or upload your public SSH key to GitHub depending on the protocol that you are using (HTTPS vs. SSH).
- Merge your Apache and GitHub accounts using the account linking page (you should see 3 green checks in GitBox).
- Wait at least 30 minutes for an email inviting you to Apache GitHub Organization.
- Accept the invitation and verify that you are a member of the team.
Merging pull requests
These are instructions for a Calcite committer who has reviewed a pull request from a contributor, found it satisfactory, and is about to merge it to main. Usually the contributor is not a committer (otherwise they would be committing it themselves, after you gave approval in a review).
There are certain kinds of continuous integration tests that are not run
automatically against the PR. These tests can be triggered explicitly by adding
an appropriate label to the PR. For instance, you can run slow tests by adding
the slow-tests-needed
label. It is up to you to decide if these additional
tests need to run before merging.
If the PR has multiple commits, squash them into a single commit. The commit message should follow the conventions outlined in contribution guidelines. If there are conflicts it is better to ask the contributor to take this step, otherwise it is preferred to do this manually since it saves time and also avoids unnecessary notification messages to many people on GitHub.
If the merge is performed via command line (not through the GitHub web interface), make sure the message contains a line “Close apache/calcite#YYY”, where YYY is the GitHub pull request identifier.
When the PR has been merged and pushed, be sure to update the JIRA case. You must:
- resolve the issue (do not close it as this will be done by the release manager);
- select “Fixed” as resolution cause;
- mark the appropriate version (e.g., 1.20.0) in the “Fix version” field;
- add a comment (e.g., “Fixed in …”) with a hyperlink pointing to the commit which resolves the issue (in GitHub or GitBox), and also thank the contributor for their contribution (“thank you” can be omitted if the contributor is already a commiter). The hyperlink provided should be with respect to the main branch. You should be able to identify the commit by browsing
https://github.com/apache/calcite/commits/main/.
Set up PGP signing keys
Follow instructions here to
create a key pair. (On macOS, I did brew install gpg
and
gpg --full-generate-key
.)
Add your public key to the
KEYS
file by following instructions in the KEYS
file. If you don’t have
the permission to update the KEYS
file, ask PMC for help.
(The KEYS
file is not present in the git repo or in a release tar
ball because that would be
redundant.)
In order to be able to make a release candidate, make sure you upload your key to https://keyserver.ubuntu.com and/or http://pool.sks-keyservers.net:11371 (keyservers used by Nexus).
Set up Nexus repository credentials
Gradle provides multiple ways to configure project properties.
For instance, you could update $HOME/.gradle/gradle.properties
.
Note: the build script would print the missing properties, so you can try running it and let it complain on the missing ones.
The following options are used:
Note:
- Both
asfNexusUsername
andasfSvnUsername
are your apache id withasfNexusPassword
andasfSvnPassword
are corresponding password. - Git source account can be configured to either Gitbox (the default) or GitHub. For Gitbox,
asfGitSourceUsername
is your apache id, andasfGitSourcePassword
is the corresponding password. For GitHub,asfGitSourceUsername
is your GitHub id whileasfGitSourcePassword
is not your GitHub password, you need to generate it in https://github.com/settings/tokens choosingPersonal access tokens
.
When
asflike-release-environment
is used, the credentials are taken from
asfTest...
(e.g. asfTestNexusUsername=test
)
Note: if you want to use gpg-agent
, you need to pass some more properties:
Making a snapshot
Before you start:
- Make sure you are using JDK 8. Note: you need Java 8u202 or later in case you use OpenJDK-based Java.
- Make sure build and tests succeed with
-Dcalcite.test.db=hsqldb
(the default)
Making a release candidate
Note: release artifacts (dist.apache.org and repository.apache.org) are managed with stage-vote-release-plugin
Before you start:
- Consult the release dashboard to get a quick overview about the state of the release and take appropriate actions in order to resolve pending tickets or move them to another release/backlog.
- Send an email to dev@calcite.apache.org notifying that RC build process
is starting and therefore
main
branch is in code freeze until further notice. - Set up signing keys as described above.
- Make sure you are using JDK 8. (Compiling with JDK 21 causes [CALCITE-6616].)
- Check that
README
andsite/_docs/howto.md
have the correct version number. - Check that
site/_docs/howto.md
has the correct Gradle version. - Check that
NOTICE
has the current copyright year. - Check that
calcite.version
has the proper value in/gradle.properties
. - Make sure build and tests succeed
- Make sure that
./gradlew javadoc
succeeds (i.e. gives no errors; warnings are OK) - Generate a report of vulnerabilities that occur among dependencies,
using
./gradlew dependencyCheckUpdate dependencyCheckAggregate
. Report to private@calcite.apache.org if new critical vulnerabilities are found among dependencies. - Decide the supported configurations of JDK, operating system and
Guava. These will probably be the same as those described in the
release notes of the previous release. Document them in the release
notes. To test Guava version x.y, specify
-Pguava.version=x.y
- Optional tests using properties:
-Dcalcite.test.db=mysql
-Dcalcite.test.db=hsqldb
-Dcalcite.test.mongodb
-Dcalcite.test.splunk
- Optional tests using tasks:
./gradlew testSlow
- Add release notes to
site/_docs/history.md
. If release notes already exist for the version to be released, but are commented out, remove the comments ({% comment %}
and{% endcomment %}
). Include the commit history, names of people who contributed to the release, and say which versions of Java, Guava and operating systems the release is tested against. - Make sure that every “resolved” JIRA case (including duplicates) has a fix version assigned (most likely the version we are just about to release)
Generate a list of contributors:
# Commits since 1.35
range=calcite-1.35.0..HEAD
# distinct authors
git log --abbrev-commit --pretty=format:'%aN,' $range | sort -u
# most prolific authors
git log --abbrev-commit --pretty=format:'%aN' $range | sort | uniq -c | sort -nr
# number of JIRA cases
git log --abbrev-commit --pretty=format:'%f' $range | awk -F- '$1 == "CALCITE" {print $2}' | sort -u | wc
Smoke-test sqlline
with Spatial and Oracle function tables:
The release candidate process does not add commits,
so there’s no harm if it fails. It might leave -rc
tag behind
which can be removed if required.
Define your credentials in your ~/.gradle/gradle.properties
file.
Replace jhyde
, julianhyde
and xxx
as appropriate, and be sure to
make the file private (permission 600).
useGpgCmd=true
signing.gnupg.executable=gpg
signing.gnupg.useLegacyGpg=false
signing.gnupg.keyName=0xXXXXXXXX
signing.gnupg.passphrase=xxx
asfSvnUsername=jhyde
asfSvnPassword=xxx
asfGitSourceUsername=julianhyde
asfGitSourcePassword=xxx
asfNexusUsername=jhyde
asfNexusPassword=xxx
asfCommitterId=jhyde
asfTestSvnPassword=test
asfTestSvnUsername=test
asfTestGitSourceUsername=test
asfTestGitSourcePassword=test
asfTestNexusUsername=test
asfTestNexusPassword=test
If you wish, you can perform a dry-run release with a help of asflike-release-environment; it would perform the same steps, but it would push changes to the mock Nexus, Git, and SVN servers.
If any of the steps fail, fix the problem, and start again from the top.
Starting the release candidate build
Pick a release candidate index and ensure it does not interfere with previous candidates for the version.
Troubleshooting
-
net.rubygrapefruit.platform.NativeException: Could not start 'svnmucc'
: Make sure you havesvnmucc
command installed in your machine. -
Execution failed for task ':closeRepository' ... Possible staging rules violation. Check repository status using Nexus UI
: Log into Nexus UI to see the actual error. In case ofFailed: Signature Validation. No public key: Key with id: ... was not able to be located
, make sure you have uploaded your key to the keyservers used by Nexus, see above. - [CALCITE-5573] Gradle prepareVote fails when signing artifact
- [VLSI-RELEASE-PLUGINS-64] Execution failed for task ‘:releaseRepository due to missing nexus.txt
Checking the artifacts
- In the
release/build/distributions
directory should be these 3 files, among others:apache-calcite-X.Y.Z-src.tar.gz
apache-calcite-X.Y.Z-src.tar.gz.asc
apache-calcite-X.Y.Z-src.tar.gz.sha512
- Note that the file names start
apache-calcite-
. - In the source distro
.tar.gz
(currently there is no binary distro), check that all files belong to a directory calledapache-calcite-X.Y.Z-src
. - That directory must contain files
NOTICE
,LICENSE
,README
,README.md
- Check that the version in
README
is correct - Check that the copyright year in
NOTICE
is correct - Check that
LICENSE
is identical to the file checked into git
- Check that the version in
- Make sure that the following files do not occur in the source
distros:
KEYS
,gradlew
,gradlew.bat
,gradle-wrapper.jar
,gradle-wrapper.properties
- Make sure that there is no
KEYS
file in the source distros - In each .jar (for example
core/build/libs/calcite-core-X.Y.Z.jar
andmongodb/build/libs/calcite-mongodb-X.Y.Z-sources.jar
), check that theMETA-INF
directory containsLICENSE
,NOTICE
- Check PGP, per this
Verify the staged artifacts in the Nexus repository:
- Go to https://repository.apache.org/ and login
- Under
Build Promotion
, clickStaging Repositories
- In the
Staging Repositories
tab there should be a line with profileorg.apache.calcite
and statusclosed
- Navigate through the artifact tree and make sure the .jar, .pom, .asc files are present
Cleaning up after a failed release attempt
If something is not correct, you can fix it, commit it, and prepare the next candidate. The release candidate tags might be kept for a while.
Validating a release
Get approval for a release via Apache voting process
Start a vote by sending an email to the dev list. The Gradle prepareVote
task
prints a draft mail at the end, if it completes successfully. You can find the
draft in /build/prepareVote/mail.txt
.
After vote finishes, send out the result:
Publishing a release
After a successful release vote, we need to push the release out to mirrors, and other tasks.
Choose a release date. This is based on the time when you expect to announce the release. This is usually a day after the vote closes. Remember that UTC date changes at 4 pm Pacific time.
If for whatever reason the publishDist
task fails
(e.g. failed to release nexus repository,
it is still possible to perform the publishing tasks manually. Ask for help in the dev list if
you are not sure what needs to be done.
If the releaseRepository
task prints something like:
it’s most likely that the repository has been successfully released, you can check it in ASF Nexus.
Svnpubsub will publish to the release repo and propagate to the mirrors almost immediately. So there is no need to wait more than fifteen minutes before announcing the release.
If there are now more than 2 releases, clear out the oldest ones:
The old releases will remain available in the release archive.
You should receive an email from the Apache Reporter Service. Make sure to add the version number and date of the latest release at the site linked to in the email.
The release notes and the javadoc of the new version will be automatically deployed to the website once the release commits/tags reach the ASF remote and the respective GitHub workflows are triggered.
Add a release announcement by copying
site/_posts/2016-10-12-release-1.10.0.md,
and adapt the release date in history.md
if necessary. Preview the changes locally, by following the
instructions in site/README.md, and then commit and push
the changes to the main
branch. Please note that due to CALCITE-5584,
the commit should be pushed to GitHub as the last commit; do not chain it with
the “Prepare for next development iteration” commit.
Ensure that all changes to the website (news, release notes, javadoc) are correctly displayed.
In JIRA, search for
all issues resolved in this release,
and do a bulk update(choose the transition issues
option) changing their status to “Closed”,
with a change comment
“Resolved in release X.Y.Z (YYYY-MM-DD)”
(fill in release number and date appropriately).
Uncheck “Send mail for this update”. Under the releases tab
of the Calcite project mark the release X.Y.Z as released. If it does not already exist create also
a new version (e.g., X.Y+1.Z) for the next release. In order to make the release dashboard
reflect state of the next release, change the fixVersion in the JIRA filter powering the dashboard
and save the changes.
Increase the calcite.version
value in /gradle.properties
, commit and push
the change with the message “Prepare for next development iteration”
(see ed1470a as a reference)
Re-open the main
branch. Send an email to dev@calcite.apache.org notifying
that main
code freeze is over and commits can resume.
Announce the release by sending an email to
announce@apache.org using an @apache.org
address. You can use
the 1.20.0 announcement
as a template. Be sure to include a brief description of the project.
Publishing the web site
See instructions in site/README.md.
Advanced topics for PMC members
Processing JIRA account requests
Here are some email templates that can be used when processing requests for adding a JIRA account as a contributor.