Welcome, Guest |
You have to register before you can post on our site.
|
Latest Threads |
What is the maximum numbe...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-28-2022, 07:59 AM
» Replies: 0
» Views: 8,015
|
Inbuilt Capability of VC...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:23 AM
» Replies: 0
» Views: 1,183
|
Can dataset/cube refresh...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:08 AM
» Replies: 0
» Views: 1,225
|
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:47 PM
» Replies: 0
» Views: 3,175
|
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:46 PM
» Replies: 0
» Views: 3,233
|
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:45 PM
» Replies: 0
» Views: 2,251
|
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:44 PM
» Replies: 0
» Views: 2,229
|
Data Preparation operati...
Forum: BDB-Data Prep & ETL
Last Post: shivani.jaipuria
12-26-2022, 10:09 AM
» Replies: 0
» Views: 1,203
|
Plugability Feature of B...
Forum: BDB Platform Q & A
Last Post: shivani.jaipuria
12-26-2022, 08:32 AM
» Replies: 0
» Views: 1,083
|
How to use environment va...
Forum: BDB Platform Q & A
Last Post: archana
12-26-2022, 05:57 AM
» Replies: 0
» Views: 1,085
|
|
|
Dynamic Number formatter using script |
Posted by: shreekantgosavi - 12-23-2022, 11:33 AM - Forum: BDB Designer Q & A
- No Replies
|
|
const kFormatter = (num) => {
return Math.abs(num) > 999 ? Math.sign(num) * ((Math.abs(num) / 1000).toFixed(1)) + 'k' : Math.sign(num) * Math.abs(num)
}
var total_calls = changedItem.attributes.data[0].total_calls;
var call_length = total_calls.toString().length;
if(call_length>6){
var total_calls = kFormatter(total_calls);
sdk.setValue('label37',total_calls );
}
else
{
sdk.setValue('label37',total_calls );
}
|
|
|
kafka in pipeline? |
Posted by: mohd.gulam - 12-23-2022, 11:30 AM - Forum: BDB Data Pipeline Q & A
- No Replies
|
|
Apache Kafka is a distributed streaming platform that is often used as the backbone for a data pipeline,it also called messenger, It is used to build real-time data pipelines and streaming apps.
A data pipeline is a set of processes that move data from one place to another. The data can be moved between systems, or within a system. Kafka can be used as a central hub for moving data between systems, or as a way to move data within a system
|
|
|
|