Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 50,648
» Latest member: CristinaWo
» Forum threads: 389
» Forum posts: 395

Full Statistics

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: 726
Inbuilt Capability of VC...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:23 AM
» Replies: 0
» Views: 507
Can dataset/cube refresh...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:08 AM
» Replies: 0
» Views: 470
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: 631
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: 643
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: 592
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: 573
Data Preparation operati...
Forum: BDB-Data Prep & ETL
Last Post: shivani.jaipuria
12-26-2022, 10:09 AM
» Replies: 0
» Views: 487
Plugability Feature of B...
Forum: BDB Platform Q & A
Last Post: shivani.jaipuria
12-26-2022, 08:32 AM
» Replies: 0
» Views: 490
How to use environment va...
Forum: BDB Platform Q & A
Last Post: archana
12-26-2022, 05:57 AM
» Replies: 0
» Views: 490

 
  How to use data from one pipeline to another pipeline?
Posted by: Abhiram.m - 12-22-2022, 07:29 AM - Forum: BDB Data Pipeline Q & A - No Replies

In this case, we can use shared events or mapped events. While creating a topic, we have to turn on the option for Mapped Event as below figure.(Picture1)

After that we have to mention Event Name of the other event in the other pipeline. So that, the same data will be available here. (Picture2)



Attached Files
.png   Picture2.png (Size: 179.92 KB / Downloads: 161)
.png   Picture1.png (Size: 166.67 KB / Downloads: 142)
Print this item

  What is the use of File Splitter?
Posted by: Abhiram.m - 12-22-2022, 07:25 AM - Forum: BDB Data Pipeline Q & A - No Replies

The file splitter component as the name suggests, splits the file into number of output events which is connected to it and process the data. That is, we can split the files according to the File types like csv, excel etc. We have to choose the number of outputs and file type for each.

Print this item

  Why do we use SFTP for file transfer?
Posted by: Abhiram.m - 12-22-2022, 07:24 AM - Forum: BDB Data Pipeline Q & A - No Replies

Secure File Transfer Protocol (SFTP) is a network protocol for securely accessing, transferring, managing large files and sensitive data. SFTP is used for transferring files over Transport Layer Security and the transfer of data for virtual private network (VPN) applications with high security.

It uses SSH to transfer the files and requires that the client be authenticated by the server.

Print this item

  What is the use of Scheduler Component in Pipeline?
Posted by: Abhiram.m - 12-22-2022, 07:22 AM - Forum: BDB Data Pipeline Q & A - No Replies

Scheduler component is used in the workflows to specify the time after which the pipeline should be up and running. We can schedule the time interval, so that the pipeline will run in each interval.

The invocation type will be real-time only.

Print this item

  Script for SetTop of the component
Posted by: rubeena.hajira - 12-22-2022, 07:17 AM - Forum: BDB Designer Q & A - No Replies

Script to set the Top of the component on click of another component:
*Below mentioned script should be written on any component script to set the Top of another component.
*(Componnet is svg523 Top measurement is 399).

sdk.setTop( 'svg523', 399 );

Print this item

  Script for SetTop of the component
Posted by: rubeena.hajira - 12-22-2022, 07:12 AM - Forum: BDB Designer Q & A - No Replies

Script to set the Top of the component on click of another component:
*Below mentioned script should be written on any component script area to set the Top of another component.
*(Componnet is svg523 Top measurement is 399).

sdk.setTop( 'svg523', 399 );

Print this item

  Script for Bar width and to adjust slider
Posted by: rubeena.hajira - 12-22-2022, 06:59 AM - Forum: BDB Designer Q & A - No Replies

Script for Bar width and to adjust slider:
*This is to be written on the Connection script area of the respective component.

var len=changedItem.attributes.data.length;
var x=sdk.getWidget('timeline_DR' );
sdk.getWidget( 'timeline_DR').m_sliderheightratio=4.87;  //sliderheight
if(len>15)
{    
//x.m_showslider=true;
var ab=((15*100)/len);
x.m_sliderrange=ab;  //sliderrange
    
}
else{
//x.m_showslider=false;
if(changedItem.attributes.data.length<16)
{
x.m_controlbarwidth =60;
x.m_barwidth =60;
}

else {
x.m_controlbarwidth =65;
x.m_barwidth = 65;
}
}

Print this item

  Convert number to comma separated format
Posted by: Sruthi P - 12-22-2022, 06:20 AM - Forum: BDB Designer Q & A - No Replies

How to convert a number to comma separated format? 

Add this in connection script

function numberWithCommas(x) {
     return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
}


var cost = changedItem.attributes.data[0].cost_amount;
var cost_comma=numberWithCommas(cost);

Print this item

  Basic Terminologies in Kafka..
Posted by: abhishek_acharya - 12-22-2022, 06:18 AM - Forum: BDB Data Pipeline Q & A - No Replies

Terminologies in Kafka:

Producer: An application which publishes or writes data to kafka.

Consumer : An application that receives data from kafka.

Broker: A kafka server (Broker/Agent for the messages/data between producer and consumer)

Cluster: A group of computers/brokers connected together.

Topic: A name for a kafka stream.

Partition: A part of a topic.

Offset: Unique ID for a message within a partition.

Consumer Group: A group of consumers acting as a single logical unit.

Print this item

  How to get different symbol for graphics component?
Posted by: abhishek_acharya - 12-22-2022, 06:09 AM - Forum: BDB Designer Q & A - No Replies

In properties of graphics component select category as none then go to svg path string and click on shape browser then u will get into new page(bdb font-icons) from that copy whichever shape name u want and paste that name with bd as prefix for ex: bd-picker and then click on save.

Print this item