Coder Social home page Coder Social logo

docs's People

Contributors

alejandrodnm avatar antekresic avatar arajkumar avatar billy-the-fish avatar charislam avatar clarkbw avatar dependabot[bot] avatar erimatnor avatar ggodeke avatar harkishen-singh avatar jacobprall avatar jamesguthrie avatar jamessewell avatar jnidzwetzki avatar jonatas avatar konskov avatar loquacity avatar mathisve avatar mfundul avatar mirandaauhl avatar mkindahl avatar rajakavitha1 avatar ramonguiu avatar rtwalker avatar svenklemm avatar syvb avatar tedsczelecki avatar thatzopoulos avatar vineethreddy02 avatar zseta avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

docs's Issues

[Site Bug] Issue with the page: /404.html

Use this template for reporting bugs in the docs.

Describe the bug

[Provide as much detail as you can]

What do the docs say now?

What should the docs say?

Page affected

[Provide the URL to the page you noticed the bug on]

Version affected

[Which version of the site you noticed the bug on]

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

[Attach images of screenshots showing the bug]

Any further info

[Anything else you want to add, or further links]

[Content Bug] Run_job link does not work in the Compression how-to guide

Describe the bug

The link to "run_job" gives a not found error.

What do the docs say now?

old link: https://docs.timescale.com/api/latest/actions-and-automation/run_job/

What should the docs say?

new link: https://docs.timescale.com/api/latest/actions/run_job/

Page affected

https://docs.timescale.com/timescaledb/latest/how-to-guides/compression/backfill-historical-data/##manually-decompressing-chunks-for-backfill

Version affected

latest

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

image

Any further info

[Anything else you want to add, or further links]

[Docs RFC] Cloud - Create Security section

Describe change in content, appearance, or functionality

Create a new section with information about securing your Cloud instance.

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Deadline

[When does this need to be addressed]

Any further info

[Anything else you want to add, or further links]

[Content Bug] Broken links with internal references

There are a couple of broken links in the timescale documentation under the "Migrate Existing Data" pages.

https://docs.timescale.com/timescaledb/latest#same-db
https://docs.timescale.com/timescaledb/latest#different-db

Report from the Timescale community Slack.

Links for reference:

timescaledb/getting-started/migrate-data.md
15:data, [follow these instructions][same-db].
36:## Migrate from the Same PostgreSQL Database [](same-db)
256:[same-db]: #same-db

timescaledb/how-to-guides/migrate-data/index.md
16:data, [follow these instructions][same-db].
37:## Migrate from the Same PostgreSQL Database [](same-db)
258:[same-db]: #same-db

It looks like a general issue with the local headers. I was checking the python tutorial, if you try to click on the first link it's also pointing to the main page.

[Content Bug] The links in the Conclusion section in Tableau tutorial do not work

[Content Bug] H3 headings in Grafana tutorial gives Not found error

Describe the bug

When I click on the H3 heading in the Visualize missing data tutorial and in the Setup alerts tutorial, a new page opens and gives a Not Found error. I think it should not happen. I should stay on the same page.
Tried to explain the bug as much as possible. But not sure if I am making sense :-/

What do the docs say now?

Once I click on the H3 heading, a new page opens and gives a Not Found error.

What should the docs say?

After clicking on the H3 heading, I should stay on the same page and navigate to the section I clicked on.

Page affected

I found the same bug on these two pages:
https://docs.timescale.com/timescaledb/latest/tutorials/grafana/visualize-missing-data/
https://docs.timescale.com/timescaledb/latest/tutorials/grafana/setup-alerts/

Version affected

latest

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

image

Any further info

[Anything else you want to add, or further links]

[Content Bug] Broken links on docs Tutorial: Time-series forecasting page

Describe the bug

There are multiple broken links on the Tutorial: Time-series forecasting page that results in 404 pages.

I found "Hello Timescale Tutorial" linked text listed twice that lead to 404. Additional linked text "Installed and set up PostGIS in database" leads to 404. See screenshots below for reference.

Page affected

https://docs.timescale.com/timescaledb/latest/tutorials/time-series-forecast/#tutorial-time-series-forecasting

Version affected

latest

Screenshots

Hello Timescale Tutorial link 1

Hello Timescale Tutorial link 2

404 1

404 2

Installed and set up PostGIS in database link 3

404 3 Installed and set up PostGIS in database

Any further info

There are more links on that "Introduction to time-series forecasting" docs page that I believe are not the correct URL destination. I'll create a new ticket following this one to detail those other links I'm referring to.

Postgres JDBC 42.0.0 CopyManager doesn't work with default forge installation. The authentication type 10 is not supported

Steps to reproduce

  • create service at forge
  • use Postgres 42.0.0
 implementation "org.postgresql:postgresql:42.0.0"
  • try to use CopyManager to ingest data, it expects tab separated values in file
import java.sql.DriverManager
val props = new Properties()
props.setProperty("user", username)
props.setProperty("password", password)
val connection = DriverManager.getConnection(jdbcUrl, props)

val copyManager = new CopyManager(connection.asInstanceOf[BaseConnection])
val result = copyManager.copyIn(s"""COPY $tableName FROM STDIN WITH DELIMITER as E'\t' """, bufferedReader)

driver throws exception:

org.postgresql.util.PSQLException: The authentication type 10 is not supported. Check that you have configured the pg_hba.conf file to include the client's IP address or subnet, and that it is using an authentication scheme supported by the driver.
hanged
Now the driver uses SASLprep normalization for SCRAM authentication fixing some issues with spaces in passwords.
Fix: Actually close unclosed results. Previously was not closing the first unclosed result fixes #1903 (#1905) There is a small behaviour change here as a result. If closeOnCompletion is called on an existing statement and the statement is executed a second time it will fail.
  • bump to 42.2.19

the works out of the box.

It would be great to provide minimal required driver version. Users usually blindly copy-paste deps from project to project and don't really look at lib versions.
BTW

  • timescale/timescaledb:2.2.1-pg12
  • 42.0.0
  • CopyManager

work, so it's unexpected that it doesn't work at forge. I tried all stuff locally before going to forge and start to spend money.

Self hosted AMI documentation broken link

Hi,

I am attempting to gather info for a self hosted install of TimescaleDB via the AWS ami mentioned in the documentation. There is a link in the docs to information about instance sizing that is going to 404.

https://docs.timescale.com/timescaledb/latest/how-to-guides/install-timescaledb/self-hosted/ami/installation-ubuntu-ami/#installing-from-an-amazon-ami-ubuntu

The link at the bottom to the Instance configuration page that is supposed to have info on selecting an appropriate instance type does not work.

[Content Bug] Not-found error in the Grafana tutorial - link to Prometheus tutorial

Describe the bug

The link to "Timescale and Prometheus tutorial" gives a not-found error.

What do the docs say now?

https://docs.timescale.com/timescaledb/latest/tutorials/tutorial-setup-timescale-prometheus/

What should the docs say?

https://docs.timescale.com/timescaledb/latest/tutorials/promscale/

Page affected

https://docs.timescale.com/timescaledb/latest/tutorials/grafana/setup-alerts/#introduction-to-alerts-in-grafana

Version affected

latest

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

image

Any further info

[Anything else you want to add, or further links]

[Docs RFC] Add content for Real Time Continuous Aggregates

Describe change in content, appearance, or functionality

In fixing #45 I noticed that we have a comprehensive blog post on real time continuous aggregates, but no specific section in the docs. Let's add a new topic in the CA section for real time.

Subject matter expert (SME)

@svenklemm and @mfreed wrote the blog post: https://blog.timescale.com/blog/achieving-the-best-of-both-worlds-ensuring-up-to-date-results-with-real-time-aggregation/

Deadline

[When does this need to be addressed]

Any further info

[Anything else you want to add, or further links]

[Content Bug] Alter_job error in the User-defined actions how-to guide

Describe the bug

The link to "alter_job" gives a not-found error.

What do the docs say now?

old link: https://docs.timescale.com/api/latest/actions-and-automation/alter_job/

What should the docs say?

new link: https://docs.timescale.com/api/latest/actions/alter_job/

Page affected

https://docs.timescale.com/timescaledb/latest/how-to-guides/user-defined-actions/alter-and-delete/

Version affected

latest

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

image

Any further info

[Anything else you want to add, or further links]

Add information about what extensions can be installed on forge

Add a new page to show what extensions are allowed on the forge service.

pg_available_extensions by default doesn’t match with what can actually be installed at Forge.

Here is query that can show the allowed extensions:

 select pae.* from current_setting('extwlist.extensions') AS cs(e) cross join regexp_split_to_table(e, ',') as ext(allowed) join pg_available_extensions as pae on (allowed=name) order by 1;

Here is the output from my forge testing instance:

          name          | default_version |                               comment
------------------------+-----------------+----------------------------------------------------------------------
 bloom                  | 1.0             | bloom access method - signature file based index
 btree_gin              | 1.3             | support for indexing common datatypes in GIN
 btree_gist             | 1.5             | support for indexing common datatypes in GiST
 citext                 | 1.6             | data type for case-insensitive character strings
 cube                   | 1.4             | data type for multidimensional cubes
 dict_int               | 1.0             | text search dictionary template for integers
 dict_xsyn              | 1.0             | text search dictionary template for extended synonym processing
 fuzzystrmatch          | 1.1             | determine similarities and distance between strings
 hstore                 | 1.6             | data type for storing sets of (key, value) pairs
 intarray               | 1.2             | functions, operators, and index support for 1-D arrays of integers
 isn                    | 1.2             | data types for international product numbering standards
 lo                     | 1.1             | Large Object maintenance
 ltree                  | 1.1             | data type for hierarchical tree-like structures
 pg_stat_statements     | 1.7             | track execution statistics of all SQL statements executed
 pg_trgm                | 1.4             | text similarity measurement and index searching based on trigrams
 pgcrypto               | 1.3             | cryptographic functions
 pgrouting              | 3.1.0           | pgRouting Extension
 postgis                | 3.1.1           | PostGIS geometry and geography spatial types and functions
 postgis_raster         | 3.1.1           | PostGIS raster types and functions
 postgis_sfcgal         | 3.1.1           | PostGIS SFCGAL functions
 postgis_tiger_geocoder | 3.1.1           | PostGIS tiger geocoder and reverse geocoder
 postgis_topology       | 3.1.1           | PostGIS topology spatial types and functions
 promscale              | 0.1.2           | Promscale support functions
 seg                    | 1.3             | data type for representing line segments or floating-point intervals
 tablefunc              | 1.0             | functions that manipulate whole tables, including crosstab
 tcn                    | 1.0             | Triggered change notifications
 timescale_analytics    | 0.2             | timescale_analytics
 timescaledb            | 2.2.0           | Enables scalable inserts and complex queries for time-series data
 tsm_system_rows        | 1.0             | TABLESAMPLE method which accepts number of rows as a limit
 tsm_system_time        | 1.0             | TABLESAMPLE method which accepts time in milliseconds as a limit
 unaccent               | 1.1             | text search dictionary that removes accents
 uuid-ossp              | 1.1             | generate universally unique identifiers (UUIDs)
(32 rows)

[Content Bug] Missing links where there should be linked text in documentation

Use this template for reporting bugs in the docs.

Describe the bug

missing links where there are brackets in the first sentence under the Compression section on docs. See attached screenshot with highlighted text that needs links.

Page affected

https://docs.timescale.com/api/latest/compression/

Version affected

latest

Subject matter expert (SME)

If known, who is a good person to ask about this topic

Screenshots

Screen Shot 2021-05-24 at 3 48 56 PM

Any further info

I'm not sure what the target URLs are for the two links being blog post and a tutorial or I'd include those on here as well.

[Content Bug] Run_job error in the User defined-actions how-to guide

Describe the bug

The link to "run_job" gives a not found error.

What do the docs say now?

old link: https://docs.timescale.com/timescaledb/latest/api/#run_job

What should the docs say?

new link: https://docs.timescale.com/api/latest/actions/run_job/

Page affected

https://docs.timescale.com/timescaledb/latest/how-to-guides/user-defined-actions/test-and-debug/

Version affected

latest

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

image

Any further info

[Anything else you want to add, or further links]

[Docs RFC] Forge - Create HA section

Describe change in content, appearance, or functionality

Create a new section for discussing HA on Forge.

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Deadline

[When does this need to be addressed]

Any further info

[Anything else you want to add, or further links]

[Content Bug] Not-found error in the Tableau tutorial - Install TimescaleDB

Use this template for reporting bugs in the docs.

Describe the bug

The link to "install TimescaleDB" gives a not-found error.

What do the docs say now?

https://docs.timescale.com/timescaledb/latest/getting-started/installation/

What should the docs say?

https://docs.timescale.com/timescaledb/latest/how-to-guides/install-timescaledb/

Page affected

https://docs.timescale.com/timescaledb/latest/tutorials/visualize-with-tableu/#prerequisites

Version affected

latest

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

image

Any further info

[Anything else you want to add, or further links]

Document installation via MacPorts

Relevant system information:

  • OS: [e.g. Ubuntu 16.04, Windows 10 x64, etc]: MacOS

I just added support for installing timescaledb via MacPorts:

port -v install timescaledb +postgresqlXX

where XX is the appropriate variant, e.g. 96, 10, 11, 12.

Can this be added to your docs?

[Change] Clarify how to turn off compression

Isn't obvious to users in the compression section that it's easy to turn off compression:

ALTER TABLE <hypertable> SET (timescaledb.compress=false);

Clarify what this will also do to existing compressed chunks.

[Content Bug] Update Forge Screenshots

Describe the bug

Forge screenshots need an update. The compute sizes have changed.

What do the docs say now?

The images show older options.

What should the docs say?

The images should show the current options.

Page affected

https://docs.timescale.com/timescale-forge/latest/create-a-service/#step-create-your-first-service

Version affected

latest

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

[Attach images of screenshots showing the bug]

Any further info

image

[Content Bug] Link to "upgrade documentation" not found in Changes in TimescaleDB 2.0 release note

Describe the bug

The link to "upgrade documentation" gives a not found error.

What do the docs say now?

https://docs.timescale.com/timescaledb/latest/v2.0/update-timescaledb/

What should the docs say?

https://docs.timescale.com/timescaledb/latest/how-to-guides/update-timescaledb/

Page affected

https://docs.timescale.com/timescaledb/latest/overview/release-notes/changes-in-timescaledb-2

Version affected

latest

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

image

Any further info

[Bug/Typo] The :pg_version: entity is not expanding in Installation sections (was: Windows exe link broken)

Add the appropriate label(s) -->

Describe the bug

The Link for downloading the windows version of timescale does not work, the variable substitution seems broken:

https://timescalereleases.blob.core.windows.net/windows/timescaledb-postgresql-:pg_version:_x.y.z-windows-amd64.zip

Location

https://docs.timescale.com/timescaledb/latest/how-to-guides/install-timescaledb/self-hosted/windows/installation-windows/

Screenshots

Device and browser
Desktop

[Content Bug] Not-found error in the Grafana tutorial: Set Up Grafana alerts

Describe the bug

The link to "setup Grafana" gives a not-found error.

What do the docs say now?

https://docs.timescale.com/timescaledb/latest/getting-started/installation-grafana/

What should the docs say?

https://docs.timescale.com/timescaledb/latest/tutorials/grafana/installation/

Page affected

https://docs.timescale.com/timescaledb/latest/tutorials/grafana/setup-alerts/#introduction-to-alerts-in-grafana

Version affected

latest

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

image

Any further info

[Anything else you want to add, or further links]

[Content Bug] Link to "upgrade to TimescaleDB 2.0" not found in Changes in TimescaleDB 2.0 release note

Describe the bug

The link to "upgrade Timescale 2.0" gives a not-found error.

What do the docs say now?

https://docs.timescale.com/timescaledb/latest/how-to-guides/update-timescaledb/update-tsdb-2/

What should the docs say?

https://docs.timescale.com/timescaledb/latest/how-to-guides/update-timescaledb/update-timescaledb-2/

Page affected

https://docs.timescale.com/timescaledb/latest/overview/release-notes/changes-in-timescaledb-2/

Version affected

latest

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

image

Any further info

[Anything else you want to add, or further links]

[Site Bug] Issue with the page: /timescaledb/latest/how-to-guides/continuous-aggregates/drop-raw-data/

Use this template for reporting bugs in the docs.

Describe the bug

Link to Data retention doc is broken
Links to:
https://docs.timescale.com/timescaledb/latest/how-to-guides/data-retention-with-continuous-aggregates/

What do the docs say now?

Screen Shot 2021-06-28 at 8 51 14 PM

What should the docs say?

'data retention documentation' should link to proper page

Page affected

https://docs.timescale.com/timescaledb/latest/how-to-guides/continuous-aggregates/drop-raw-data/

Version affected

[Which version of the site you noticed the bug on]

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

[Attach images of screenshots showing the bug]

Any further info

[Anything else you want to add, or further links]

[Content Bug] Delete_job error in the User defined-actions how-to guide

Describe the bug

The link to "delete_job" gives a not found error.

What do the docs say now?

https://docs.timescale.com/api/latest/actions-and-automation/delete_job/

What should the docs say?

https://docs.timescale.com/api/latest/actions/delete_job/

Page affected

https://docs.timescale.com/timescaledb/latest/how-to-guides/user-defined-actions/alter-and-delete/# Version affected

Version affected

latest

Subject matter expert (SME)

[If known, who is a good person to ask about this topic]

Screenshots

image

Any further info

[Anything else you want to add, or further links]

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.