Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace issues.cask.co with cdap.atlassian.net #15722

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Build Environment
=================

For instructions on setting up your development environment, please see the
`BUILD.rst <https://github.com/caskdata/cdap/blob/develop/BUILD.rst>`__ file.
`BUILD.rst <https://github.com/cdapio/cdap/blob/develop/BUILD.rst>`__ file.

Contribution Guidelines
=======================
Expand Down
2 changes: 1 addition & 1 deletion DEVELOPERS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Build and Run CDAP Sandbox Locally with Maven

The following builds and runs the CDAP sandbox via mvn package. For more details on development
environments and build options, please see the
`BUILD.rst <https://github.com/caskdata/cdap/blob/develop/BUILD.rst>`__ file.
`BUILD.rst <https://github.com/cdapio/cdap/blob/develop/BUILD.rst>`__ file.

- Obtain a fresh copy of the CDAP (GitHub) repo::

Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Build

You can get started with CDAP by building directly from the latest source code::

git clone https://github.com/caskdata/cdap.git
git clone https://github.com/cdapio/cdap.git
cd cdap
mvn clean package

Expand Down Expand Up @@ -106,10 +106,10 @@ For quick guide to getting your system setup to contribute to CDAP, take a look

Filing Issues: Bug Reports & Feature Requests
---------------------------------------------
Bugs and suggestions should be made by `filing an issue <https://issues.cask.co/browse/cdap>`__.
Bugs and suggestions should be made by `filing an issue <https://cdap.atlassian.net/browse/cdap>`__.

Existing issues can be browsed at `the CDAP project issues
<https://issues.cask.co/browse/CDAP-8373?jql=project%20%3D%20CDAP>`__.
<https://cdap.atlassian.net/browse/CDAP-8373?jql=project%20%3D%20CDAP>`__.

Pull Requests
-------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public static Map<String, String> getOutputPartitionMetadata(Map<String, String>
public static void setInputPartitionFilter(Map<String, String> arguments,
PartitionFilter filter) {
// Serialize a singleton list for now. Support for multiple PartitionFilters can be added in the future.
// See: https://issues.cask.co/browse/CDAP-5618
// See: https://cdap.atlassian.net/browse/CDAP-5618
arguments.put(INPUT_PARTITION_FILTER, GSON.toJson(Collections.singletonList(filter)));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ protected void startUp() throws Exception {
Map<String, String> localizedUserResources = localizeUserResources(job, tempDir);

// Override user-defined job name, since we set it and depend on the name.
// https://issues.cask.co/browse/CDAP-2441
// https://cdap.atlassian.net/browse/CDAP-2441
String jobName = job.getJobName();
if (!jobName.isEmpty()) {
LOG.warn("Job name {} is being overridden.", jobName);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ public void deleteSchedules(Iterable<? extends ScheduleId> scheduleIds, @Nullabl
* @param appId the application id for which to delete the schedules
* @return the IDs of the schedules that were deleted
*/
// TODO: fix the bug that this method will return fake schedule id https://issues.cask.co/browse/CDAP-13626
// TODO: fix the bug that this method will return fake schedule id https://cdap.atlassian.net/browse/CDAP-13626
public List<ScheduleId> deleteSchedules(ApplicationId appId, long deleteTime) throws IOException {
List<ScheduleId> deleted = new ArrayList<>();
Collection<Field<?>> scanKeys = getScheduleKeysForApplicationScan(appId);
Expand All @@ -301,7 +301,7 @@ public List<ScheduleId> deleteSchedules(ApplicationId appId, long deleteTime) th
* @param programId the program id for which to delete the schedules
* @return the IDs of the schedules that were deleted
*/
// TODO: fix the bug that this method will return fake schedule id https://issues.cask.co/browse/CDAP-13626
// TODO: fix the bug that this method will return fake schedule id https://cdap.atlassian.net/browse/CDAP-13626
public List<ScheduleId> deleteSchedules(ProgramId programId, long deleteTime) throws IOException {
List<ScheduleId> deleted = new ArrayList<>();
Collection<Field<?>> scanKeys = getScheduleKeysForApplicationScan(programId.getParent());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1395,7 +1395,7 @@ private void deleteAppMetadata(ApplicationId appId, ApplicationSpecification app

// Remove metadata for the programs of the Application
// TODO: Need to remove this we support prefix search of metadata type.
// See https://issues.cask.co/browse/CDAP-3669
// See https://cdap.atlassian.net/browse/CDAP-3669
for (ProgramId programId : getAllPrograms(appId, appSpec)) {
metadataServiceClient.drop(new MetadataMutation.Drop(programId.toMetadataEntity()));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1942,7 +1942,7 @@ public Map<ProgramRunId, RunRecordDetail> getRuns(ApplicationId applicationId,

// TODO: getRun is duplicated in cdap-watchdog AppMetadataStore class.
// Any changes made here will have to be made over there too.
// JIRA https://issues.cask.co/browse/CDAP-2172
// JIRA https://cdap.atlassian.net/browse/CDAP-2172
@Nullable
public RunRecordDetail getRun(ProgramRunId programRun) throws IOException {
// Query active run record first
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* seeks are attempted to the current position. Position equality check logic in {@link
* FTPInputStream#seek} is the only change from the original class in Hadoop. This change is
* required since {@link LineRecordReader} calls {@link FTPInputStream#seek} with value of 0. TODO:
* This file can be removed once https://issues.cask.co/browse/CDAP-5387 is addressed.
* This file can be removed once https://cdap.atlassian.net/browse/CDAP-5387 is addressed.
*/
@InterfaceAudience.Private
@InterfaceStability.Unstable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* seeks are attempted to the current position. Position equality check logic in {@link
* SFTPInputStream#seek} is the only change from the original class in Hadoop. This change is
* required since {@link LineRecordReader} calls {@link SFTPInputStream#seek} with value of 0. TODO:
* This file can be removed once https://issues.cask.co/browse/CDAP-5387 is addressed.
* This file can be removed once https://cdap.atlassian.net/browse/CDAP-5387 is addressed.
*/
class SFTPInputStream extends FSInputStream {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ private HttpResponse addArtifact(Id.Artifact artifactId, InputSupplier<? extends
}
// Note: we purposefully do not check for empty string and let it pass as the header because we want to test the
// behavior where plugin classes header is set to empty string. This is what is passed by the UI. For more
// details see: https://issues.cask.co/browse/CDAP-14578
// details see: https://cdap.atlassian.net/browse/CDAP-14578
if (pluginClassesJson != null) {
builder.addHeader("Artifact-Plugins", pluginClassesJson);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ public static boolean isSystemDatasetInUserNamespace(DatasetId datasetInstanceId
* Returns whether or not the dataset defined in the given specification is transactional.
* Defaults to true. Note that this should be in TableProperties, but because we do not expose
* this setting through the API currently, keeping it here for now. See
* https://issues.cask.co/browse/CDAP-1193 for additional information.
* https://cdap.atlassian.net/browse/CDAP-1193 for additional information.
*/
public static boolean isTransactional(Map<String, String> props) {
return !"true".equalsIgnoreCase(props.get(Constants.Dataset.TABLE_TX_DISABLED));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ public void increment(byte[] row, byte[][] columns, long[] amounts) {
@Override
public boolean compareAndSwap(byte[] row, byte[] column, byte[] expectedValue, byte[] newValue) {
ensureTransactionIsStarted();
// TODO: add support for empty values; see https://issues.cask.co/browse/TEPHRA-45 for details.
// TODO: add support for empty values; see https://cdap.atlassian.net/browse/TEPHRA-45 for details.
if (newValue != null && newValue.length == 0) {
warnAboutEmptyValue(column);
}
Expand Down
2 changes: 1 addition & 1 deletion cdap-distributions/src/emr/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ curl -L -o ${__tmpdir}/install.sh https://www.chef.io/chef/install.sh && sudo ba

# Clone CDAP repo
echo "INFO: Checking out CDAP_BRANCH ${CDAP_BRANCH}"
git clone --depth 1 --branch ${CDAP_BRANCH} https://github.com/caskdata/cdap.git ${__gitdir}
git clone --depth 1 --branch ${CDAP_BRANCH} https://github.com/cdapio/cdap.git ${__gitdir}

# Check out to specific tag if specified
if [ -n "${CDAP_TAG}" ]; then
Expand Down
2 changes: 1 addition & 1 deletion cdap-distributions/src/hdinsight/pkg/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ __create_tmpdir
curl -L -o ${__tmpdir}/install.sh https://www.chef.io/chef/install.sh && sudo bash ${__tmpdir}/install.sh -v ${CHEF_VERSION} || die "Failed to install chef"

# Clone CDAP repo
git clone --depth 1 --branch ${CDAP_BRANCH} https://github.com/caskdata/cdap.git ${__gitdir}
git clone --depth 1 --branch ${CDAP_BRANCH} https://github.com/cdapio/cdap.git ${__gitdir}

# Check out to specific tag if specified
if [ -n "${CDAP_TAG}" ]; then
Expand Down
2 changes: 1 addition & 1 deletion cdap-distributions/src/packer/scripts/cookbook-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ die() { echo $*; exit 1; }
export GIT_MERGE_AUTOEDIT=no

# Grab cookbooks using knife
# Due to https://issues.cask.co/browse/CDAP-13308, we can no longer use knife cookbook site install
# Due to https://cdap.atlassian.net/browse/CDAP-13308, we can no longer use knife cookbook site install
# for cb in cdap idea maven openssh; do
# knife cookbook site install $cb || die "Cannot fetch cookbook $cb"
# done
Expand Down
2 changes: 1 addition & 1 deletion cdap-docs/_common/_source/404.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,5 @@ Post a message at one of the two CDAP groups:

- `CDAP Developers: [email protected] <https://groups.google.com/d/forum/cdap-dev>`__

We also have a `JIRA for filing issues. <https://issues.cask.co/browse/CDAP>`__
We also have a `JIRA for filing issues. <https://cdap.atlassian.net/browse/CDAP>`__

2 changes: 1 addition & 1 deletion cdap-docs/_common/common_conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def get_git_build_vars():
'cdap-studio-artifact': ("%s/pipelines/studio?artifactType=%%s" % _cdap_ui_base, None),
'cdap-java-source-github': (cdap_java_source_github_pattern , None),
'cdap-security-extn-source-github': (cdap_security_extn_github_pattern, None),
'cask-issue': ('https://issues.cask.co/browse/%s', ''),
'cask-issue': ('https://cdap.atlassian.net/browse/%s', ''),
'cask-repository-parcels-cdap': ("http://repository.cask.co/parcels/cdap/%s/%%s" % short_version, None),
'cdap-guides': (cdap_guides_github_pattern, None),
'spark-docs': ("https://spark.apache.org/docs/%s/%%s" % spark_version, None),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ for CDAP to run successfully.
.. _|distribution|-configuration-explore-service:

**Note:** Some versions of Hive contain a bug that may prevent the CDAP Explore Service from starting
up. See `CDAP-1865 <https://issues.cask.co/browse/CDAP-1865>`__ for more information about the issue.
up. See `CDAP-1865 <https://cdap.atlassian.net/browse/CDAP-1865>`__ for more information about the issue.
If the CDAP Explore Service fails to start and you see a
``javax.jdo.JDODataStoreException: Communications link failure`` in the log, try
adding this property to the Hive ``hive-site.xml`` file::
Expand Down
4 changes: 2 additions & 2 deletions cdap-docs/admin-manual/source/installation/ambari.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ Installation using Apache Ambari
**not** with Ambari.
- A number of features are currently planned to be added, including:

- select `CDAP metrics <https://issues.cask.co/browse/CDAP-4108>`__ and
- a full `smoke test of CDAP functionality <https://issues.cask.co/browse/CDAP-4105>`__ after installation.
- select `CDAP metrics <https://cdap.atlassian.net/browse/CDAP-4108>`__ and
- a full `smoke test of CDAP functionality <https://cdap.atlassian.net/browse/CDAP-4105>`__ after installation.

- If you are installing CDAP with the intention of using *replication,* see these
instructions on :ref:`CDAP Replication <installation-replication>` *before* installing or starting CDAP.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ streams), it includes access information used to generate the entity's :ref:`lin
Please note that audit logs are not published during a CDAP upgrade, as CDAP services are
not available. Hence, any application which uses CDAP audit logs to sync metadata will go
out of sync with respect to changes made during the upgrade. Please see
`CDAP-5954 <https://issues.cask.co/browse/CDAP-5954>`__ for details.
`CDAP-5954 <https://cdap.atlassian.net/browse/CDAP-5954>`__ for details.

.. _audit-logging-supported-audit-events:

Expand Down
4 changes: 2 additions & 2 deletions cdap-docs/faqs/source/general.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ What platforms are supported by the CDAP Sandbox?
-------------------------------------------------------
The CDAP Sandbox has been extensively tested on Mac OS X and Linux. CDAP on Windows
has not been as extensively tested. If you have any issues with CDAP on Windows, help us by
`filing a ticket <https://issues.cask.co/browse/CDAP>`__.
`filing a ticket <https://cdap.atlassian.net/browse/CDAP>`__.

What programming languages are supported by CDAP?
-------------------------------------------------
Expand Down Expand Up @@ -66,7 +66,7 @@ I've found a bug in CDAP. How do I file an issue?
-------------------------------------------------
You can use the `CDAP User GoogleGroup <https://groups.google.com/d/forum/cdap-user>`__ to
report issues or file a ticket using the available `CDAP JIRA system
<https://issues.cask.co/browse/CDAP>`__.
<https://cdap.atlassian.net/browse/CDAP>`__.

What User Groups and Mailing Lists are available about CDAP?
------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion cdap-docs/faqs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Check our Issues Database for known issues
------------------------------------------
When trying to solve an issue, one source of information is the CDAP Issues database.
The `unresolved issues can be browsed
<https://issues.cask.co/issues/?jql=project%3DCDAP%20AND%20resolution%3DUnresolved%20ORDER%20BY%20priority%20DESC>`__;
<https://cdap.atlassian.net/issues/?jql=project%3DCDAP%20AND%20resolution%3DUnresolved%20ORDER%20BY%20priority%20DESC>`__;
and using the search box in the upper-right, you can look for issues that contain a particular problem or keyword:

.. image:: _images/faqs-cdap-issues.png
Expand Down
Loading