[jira] [Created] (ATLAS-176) Expand and collapse Nodes in Combine I/O Lineage

2015-09-21 Thread baban (JIRA)
baban created ATLAS-176:
---

 Summary: Expand and collapse Nodes in Combine I/O Lineage 
 Key: ATLAS-176
 URL: https://issues.apache.org/jira/browse/ATLAS-176
 Project: Atlas
  Issue Type: Task
Reporter: baban






--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-134) Some defects found when reviewing the source code.

2015-09-21 Thread liutongfeng (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-134?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=14901753#comment-14901753
 ] 

liutongfeng commented on ATLAS-134:
---

I have checked the file atlas-start.py, there is no need to modify the file 
when its windows.

> Some defects found when reviewing the source code.
> --
>
> Key: ATLAS-134
> URL: https://issues.apache.org/jira/browse/ATLAS-134
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: trunk
>Reporter: liutongfeng
>Priority: Minor
>  Labels: patch
> Fix For: trunk
>
> Attachments: ATLAS-134.patch
>
>
> 1.The second getKeyType() should be getValueType().
> file : ObjectGraphTraversal.java
> line : 56
> IDataType keyType = ((DataTypes.MapType) dT).getKeyType();
> IDataType valueType = ((DataTypes.MapType) dT).getKeyType();
> processMap(keyType, valueType, val);
> 2.The second getKeyType() should be getValueType().
> file : ObjectGraphWalker.java
> line : 94
> IDataType keyType = ((DataTypes.MapType) dT).getKeyType();
> IDataType valueType = ((DataTypes.MapType) dT).getKeyType(); 
> visitMap(keyType, valueType, val);
> 3.When OS is WINDOWS, '/' should be '\\', otherwise the test will fail.
> file : TestMetadata.py
> line : 52
> if IS_WINDOWS:
>   java_mock.assert_called_with(
> 'org.apache.atlas.Main',
> ['-app', 'metadata_home/server/webapp/atlas'],
> 
> 'metadata_home/conf:metadata_home/server/webapp/atlas/WEB-INF/classes:metadata_home/server/webapp/atlas/WEB-INF/lib\\*:metadata_home/libext\\*',
> ['-Datlas.log.dir=metadata_home/logs', 
> '-Datlas.log.file=application.log', '-Datlas.home=metadata_home', 
> '-Datlas.conf=metadata_home/conf', '-Xmx1024m', 
> '-Dlog4j.configuration=atlas-log4j.xml'], 'metadata_home/logs')
> else:
> 4.Should use return.
> file : 
> incubator-atlas\repository\src\main\java\org\apache\atlas\repository\memory\AttributeStores.java
> line : 58
> static IAttributeStore createStore(AttributeInfo i) throws 
> RepositoryException {
> switch (i.dataType().getTypeCategory()) {
> case PRIMITIVE:
> if (i.dataType() == DataTypes.BOOLEAN_TYPE) {
> return new BooleanAttributeStore(i);
> } else if (i.dataType() == DataTypes.BYTE_TYPE) {
> return new ByteAttributeStore(i);
> } else if (i.dataType() == DataTypes.SHORT_TYPE) {
> new ShortAttributeStore(i); //   should be return
> } else if (i.dataType() == DataTypes.INT_TYPE) {
> return new IntAttributeStore(i);



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Comment Edited] (ATLAS-147) Fix a code issue when defineTypes

2015-09-21 Thread Suma Shivaprasad (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-147?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=14900841#comment-14900841
 ] 

Suma Shivaprasad edited comment on ATLAS-147 at 9/21/15 3:41 PM:
-

+1.  Thanks [~ltfxyz] . Will be committed tmrw


was (Author: suma.shivaprasad):
+1. 

> Fix a code issue when defineTypes
> -
>
> Key: ATLAS-147
> URL: https://issues.apache.org/jira/browse/ATLAS-147
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: trunk
>Reporter: liutongfeng
>Priority: Minor
>  Labels: patch
> Fix For: trunk
>
> Attachments: ATLAS-147.patch
>
>
> file : org/apache/atlas/typesystem/types/TypeSystem.java
> for (StructTypeDefinition structDef : structDefs) {
> constructStructureType(structDef);
> typeCategoriesToTypeNamesMap.put(DataTypes.TypeCategory.CLASS, 
> structDef.typeName);
> }
> The above TypeCategory.CLASS should be TypeCategory.STRUCT.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


Re: [Atlas] A source code question

2015-09-21 Thread Suma Shivaprasad
attrname is same as i.name in this case. So shoudnt be an issue

Thanks
Suma

On Wed, Sep 16, 2015 at 1:20 PM, ltf  wrote:

> Hello,
> In the following code, for ENUM, the key for fieldPos is i.name, but
> others are attrName.
> Is it a issue??? Thanks.
>
>
>
>
> file : org/apache/atlas/typesystem/types/HierarchicalType.java
> protected Pair>
> constructFieldMapping(ImmutableList superTypes, AttributeInfo...
> fields) throws AtlasException { ... String attrName = i.name; if
> (fieldsMap.containsKey(attrName)) { attrName =
> currentPath.addOverrideAttr(attrName); } attributeNameToType.put(attrName,
> superType.getName()); fieldsMap.put(attrName, i);
> fieldNullPos.put(attrName, fieldNullPos.size()); if (i.dataType() ==
> DataTypes.BOOLEAN_TYPE) { fieldPos.put(attrName, numBools); numBools++; }
> else if (i.dataType() == DataTypes.BYTE_TYPE) { fieldPos.put(attrName,
> numBytes); numBytes++; } else if (i.dataType() == DataTypes.SHORT_TYPE) {
> fieldPos.put(attrName, numShorts); numShorts++; } else if (i.dataType() ==
> DataTypes.INT_TYPE) { fieldPos.put(attrName, numInts); numInts++; } else if
> (i.dataType() == DataTypes.LONG_TYPE) { fieldPos.put(attrName, numLongs);
> numLongs++; } else if (i.dataType() == DataTypes.FLOAT_TYPE) {
> fieldPos.put(attrName, numFloats); numFloats++; } else if (i.dataType() ==
> DataTypes.DOUBLE_TYPE) { fieldPos.put(attrName, numDoubles); numDoubles++;
> } else if (i.dataType() == DataTypes.BIGINTEGER_TYPE) {
> fieldPos.put(attrName, numBigInts); numBigInts++; } else if (i.dataType()
> == DataTypes.BIGDECIMAL_TYPE) { fieldPos.put(attrName, numBigDecimals);
> numBigDecimals++; } else if (i.dataType() == DataTypes.DATE_TYPE) {
> fieldPos.put(attrName, numDates); numDates++; } else if (i.dataType() ==
> DataTypes.STRING_TYPE) { fieldPos.put(attrName, numStrings); numStrings++;
> } else if (i.dataType().getTypeCategory() == DataTypes.TypeCategory.ENUM) {
> fieldPos.put(i.name, numInts); numInts++; } else if
> (i.dataType().getTypeCategory() == DataTypes.TypeCategory.ARRAY) {
> fieldPos.put(attrName, numArrays); numArrays++;
>
>
>
>
>
>
>
>
> Best, liutongfeng
>
>
>
>
>


[jira] [Comment Edited] (ATLAS-155) Images do not show up on the dashboard

2015-09-21 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-155?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=14901116#comment-14901116
 ] 

Darshan Kumar edited comment on ATLAS-155 at 9/21/15 6:12 PM:
--

[~suma.shivaprasad] The view.html file was removed while merging so added in 
patch


was (Author: darshankumar89):
The view.html file was removed while merging so added in patch

> Images do not show up on the dashboard
> --
>
> Key: ATLAS-155
> URL: https://issues.apache.org/jira/browse/ATLAS-155
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Venkatesh Seetharam
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-155-v0.patch
>
>
> Post ATLAS-90 and ATLAS-109, the images do not show up, was not moved from v2 
> folder. I forced deleted v2 folder.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (ATLAS-155) Images do not show up on the dashboard

2015-09-21 Thread Darshan Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-155?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=14901116#comment-14901116
 ] 

Darshan Kumar commented on ATLAS-155:
-

The view.html file was removed while merging so added in patch

> Images do not show up on the dashboard
> --
>
> Key: ATLAS-155
> URL: https://issues.apache.org/jira/browse/ATLAS-155
> Project: Atlas
>  Issue Type: Bug
>Affects Versions: 0.6-incubating
>Reporter: Venkatesh Seetharam
>Assignee: Darshan Kumar
>Priority: Critical
>  Labels: patch-available
> Fix For: 0.6-incubating
>
> Attachments: ATLAS-155-v0.patch
>
>
> Post ATLAS-90 and ATLAS-109, the images do not show up, was not moved from v2 
> folder. I forced deleted v2 folder.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


Re: Review Request 38393: ATLAS-58 Make hive hook reliable

2015-09-21 Thread Suma Shivaprasad

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/38393/#review99747
---



repository/src/main/java/org/apache/atlas/repository/graph/GraphBackedMetadataRepository.java
 (line 647)


we should rename this function to make the intention clear



repository/src/main/java/org/apache/atlas/services/DefaultMetadataService.java 
(line 197)


we should include the typedefinition as well in the exception?



repository/src/main/java/org/apache/atlas/services/MetadataService.java (line 
83)


pls add java doc for th args to make it clear


- Suma Shivaprasad


On Sept. 21, 2015, 8:13 a.m., Shwetha GS wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/38393/
> ---
> 
> (Updated Sept. 21, 2015, 8:13 a.m.)
> 
> 
> Review request for atlas.
> 
> 
> Bugs: ATLAS-58
> https://issues.apache.org/jira/browse/ATLAS-58
> 
> 
> Repository: atlas
> 
> 
> Description
> ---
> 
> Hive hook sends notification messages (list of entities). The Notification 
> consumer on server side consumes these messages and registers the entities. 
> The server handles de-duping of entities based on the unique attribute of the 
> entity
> Big changes:
> 1. Concept of service that are started and stopped at atlas start and stop
> 2. De-duping of entities on server based on any unique attribute for the 
> entity. If entity doesn't have any unique attribute, de-duping is not done 
> and new entity is created
> 3. Changed entity submit API to take list of entities instead of just 1 
> entity (required for hive hook) - backward incompatible
> 4. Moved submit and list from EntityResource to EntitiesResource - backward 
> incompatible 
> 5. Moved security tests from integration tests to unit tests - as they were 
> creating issues with server start as jetty already starts another server for 
> integration tests
> 6. Removed some duplicate tests from repository module (the same tests exist 
> in typesystem module as well)
> 7. In webapp ITs, re-used the types defined
> 8. Hive hook now sends notifications instead of registering entities. Sending 
> notification is done synchronously. So, this adds to hive command execution 
> delay. But this also makes it reliable
> 
> Pending:
> 1. Entity updates like alter table commands are not handlded. Will create 
> another jira for this
> 2. Webapp jetty plugin doesn't shutdown embedded kafka at the end of 
> integration tests. So, hive bridge ITs fail. Hive bridge ITs pass if run on 
> their own. Still checking on this
> 
> 
> Diffs
> -
> 
>   addons/hive-bridge/pom.xml 914d8c6 
>   addons/hive-bridge/src/bin/import-hive.sh 99300e8 
>   
> addons/hive-bridge/src/main/java/org/apache/atlas/hive/bridge/HiveMetaStoreBridge.java
>  4d1af4e 
>   addons/hive-bridge/src/main/java/org/apache/atlas/hive/hook/HiveHook.java 
> fe26446 
>   
> addons/hive-bridge/src/main/java/org/apache/atlas/hive/model/HiveDataModelGenerator.java
>  cb8359e 
>   addons/hive-bridge/src/site/twiki/Bridge-Hive.twiki 647af27 
>   addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/HiveHookIT.java 
> 2bf3aba 
>   client/pom.xml 2e27930 
>   client/src/main/java/org/apache/atlas/ApplicationProperties.java 738ec53 
>   client/src/main/java/org/apache/atlas/AtlasClient.java 1c7d62a 
>   client/src/test/java/org/apache/atlas/ApplicationPropertiesTest.java 
> 4acb3e1 
>   client/src/test/resources/application.properties dbd6002 
>   common/pom.xml PRE-CREATION 
>   common/src/main/java/org/apache/atlas/service/Service.java PRE-CREATION 
>   common/src/main/java/org/apache/atlas/service/Services.java PRE-CREATION 
>   dashboard/public/modules/details/detailsResource.js af2f249 
>   dashboard/public/modules/search/searchController.js b5e6c37 
>   distro/pom.xml d42d78f 
>   distro/src/bin/atlas_start.py 7680f04 
>   distro/src/conf/application.properties bf323a7 
>   distro/src/main/assemblies/standalone-package.xml 625396a 
>   docs/pom.xml 4535fe0 
>   docs/src/site/resources/architecture.png 826df37 
>   docs/src/site/resources/data-types.png 3aa1904 
>   docs/src/site/resources/guide-class-diagram.png ca51239 
>   docs/src/site/resources/guide-instance-graph.png a2c8f82 
>   docs/src/site/resources/images/twiki/architecture.png PRE-CREATION 
>   docs/src/site/resources/images/twiki/data-types.png PRE-CREATION 
>   docs/src/site/resources/images/twiki/guide-class-diagram.png PRE-CREATION 
>   docs/src/site/resources/images/twiki/guide-instance-graph.png PRE-CREATION 
>   docs/src/site/resources/images/twiki/notification.png PRE-CREATION 
>   

Re: Review Request 38393: ATLAS-58 Make hive hook reliable

2015-09-21 Thread Suma Shivaprasad

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/38393/#review99753
---



docs/src/site/twiki/TypeSystem.twiki (line 8)


pls add docs for modelling unique entities by qualifiedName



typesystem/src/main/resources/application.properties (line 59)


pls add comments for the configs


- Suma Shivaprasad


On Sept. 21, 2015, 8:13 a.m., Shwetha GS wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/38393/
> ---
> 
> (Updated Sept. 21, 2015, 8:13 a.m.)
> 
> 
> Review request for atlas.
> 
> 
> Bugs: ATLAS-58
> https://issues.apache.org/jira/browse/ATLAS-58
> 
> 
> Repository: atlas
> 
> 
> Description
> ---
> 
> Hive hook sends notification messages (list of entities). The Notification 
> consumer on server side consumes these messages and registers the entities. 
> The server handles de-duping of entities based on the unique attribute of the 
> entity
> Big changes:
> 1. Concept of service that are started and stopped at atlas start and stop
> 2. De-duping of entities on server based on any unique attribute for the 
> entity. If entity doesn't have any unique attribute, de-duping is not done 
> and new entity is created
> 3. Changed entity submit API to take list of entities instead of just 1 
> entity (required for hive hook) - backward incompatible
> 4. Moved submit and list from EntityResource to EntitiesResource - backward 
> incompatible 
> 5. Moved security tests from integration tests to unit tests - as they were 
> creating issues with server start as jetty already starts another server for 
> integration tests
> 6. Removed some duplicate tests from repository module (the same tests exist 
> in typesystem module as well)
> 7. In webapp ITs, re-used the types defined
> 8. Hive hook now sends notifications instead of registering entities. Sending 
> notification is done synchronously. So, this adds to hive command execution 
> delay. But this also makes it reliable
> 
> Pending:
> 1. Entity updates like alter table commands are not handlded. Will create 
> another jira for this
> 2. Webapp jetty plugin doesn't shutdown embedded kafka at the end of 
> integration tests. So, hive bridge ITs fail. Hive bridge ITs pass if run on 
> their own. Still checking on this
> 
> 
> Diffs
> -
> 
>   addons/hive-bridge/pom.xml 914d8c6 
>   addons/hive-bridge/src/bin/import-hive.sh 99300e8 
>   
> addons/hive-bridge/src/main/java/org/apache/atlas/hive/bridge/HiveMetaStoreBridge.java
>  4d1af4e 
>   addons/hive-bridge/src/main/java/org/apache/atlas/hive/hook/HiveHook.java 
> fe26446 
>   
> addons/hive-bridge/src/main/java/org/apache/atlas/hive/model/HiveDataModelGenerator.java
>  cb8359e 
>   addons/hive-bridge/src/site/twiki/Bridge-Hive.twiki 647af27 
>   addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/HiveHookIT.java 
> 2bf3aba 
>   client/pom.xml 2e27930 
>   client/src/main/java/org/apache/atlas/ApplicationProperties.java 738ec53 
>   client/src/main/java/org/apache/atlas/AtlasClient.java 1c7d62a 
>   client/src/test/java/org/apache/atlas/ApplicationPropertiesTest.java 
> 4acb3e1 
>   client/src/test/resources/application.properties dbd6002 
>   common/pom.xml PRE-CREATION 
>   common/src/main/java/org/apache/atlas/service/Service.java PRE-CREATION 
>   common/src/main/java/org/apache/atlas/service/Services.java PRE-CREATION 
>   dashboard/public/modules/details/detailsResource.js af2f249 
>   dashboard/public/modules/search/searchController.js b5e6c37 
>   distro/pom.xml d42d78f 
>   distro/src/bin/atlas_start.py 7680f04 
>   distro/src/conf/application.properties bf323a7 
>   distro/src/main/assemblies/standalone-package.xml 625396a 
>   docs/pom.xml 4535fe0 
>   docs/src/site/resources/architecture.png 826df37 
>   docs/src/site/resources/data-types.png 3aa1904 
>   docs/src/site/resources/guide-class-diagram.png ca51239 
>   docs/src/site/resources/guide-instance-graph.png a2c8f82 
>   docs/src/site/resources/images/twiki/architecture.png PRE-CREATION 
>   docs/src/site/resources/images/twiki/data-types.png PRE-CREATION 
>   docs/src/site/resources/images/twiki/guide-class-diagram.png PRE-CREATION 
>   docs/src/site/resources/images/twiki/guide-instance-graph.png PRE-CREATION 
>   docs/src/site/resources/images/twiki/notification.png PRE-CREATION 
>   docs/src/site/resources/images/twiki/types-instance.png PRE-CREATION 
>   docs/src/site/resources/types-instance.png 6afca21 
>   docs/src/site/site.xml b412569 
>   docs/src/site/twiki/Architecture.twiki 5f10fde 
>   docs/src/site/twiki/Bridge-Hive.twiki PRE-CREATION 
>   

Re: Review Request 38393: ATLAS-58 Make hive hook reliable

2015-09-21 Thread Suma Shivaprasad

---
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/38393/#review99752
---



typesystem/src/main/java/org/apache/atlas/ApplicationProperties.java (line 32)


have we moved this from client to ypesystem?



typesystem/src/main/java/org/apache/atlas/typesystem/persistence/StructInstance.java
 (line 121)


if possible, can you pls fix the error message in other places where 
ValueCnversionException is being thrown curently :) Right now, we dont ge to 
know which attribute is causing the issue


- Suma Shivaprasad


On Sept. 21, 2015, 8:13 a.m., Shwetha GS wrote:
> 
> ---
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/38393/
> ---
> 
> (Updated Sept. 21, 2015, 8:13 a.m.)
> 
> 
> Review request for atlas.
> 
> 
> Bugs: ATLAS-58
> https://issues.apache.org/jira/browse/ATLAS-58
> 
> 
> Repository: atlas
> 
> 
> Description
> ---
> 
> Hive hook sends notification messages (list of entities). The Notification 
> consumer on server side consumes these messages and registers the entities. 
> The server handles de-duping of entities based on the unique attribute of the 
> entity
> Big changes:
> 1. Concept of service that are started and stopped at atlas start and stop
> 2. De-duping of entities on server based on any unique attribute for the 
> entity. If entity doesn't have any unique attribute, de-duping is not done 
> and new entity is created
> 3. Changed entity submit API to take list of entities instead of just 1 
> entity (required for hive hook) - backward incompatible
> 4. Moved submit and list from EntityResource to EntitiesResource - backward 
> incompatible 
> 5. Moved security tests from integration tests to unit tests - as they were 
> creating issues with server start as jetty already starts another server for 
> integration tests
> 6. Removed some duplicate tests from repository module (the same tests exist 
> in typesystem module as well)
> 7. In webapp ITs, re-used the types defined
> 8. Hive hook now sends notifications instead of registering entities. Sending 
> notification is done synchronously. So, this adds to hive command execution 
> delay. But this also makes it reliable
> 
> Pending:
> 1. Entity updates like alter table commands are not handlded. Will create 
> another jira for this
> 2. Webapp jetty plugin doesn't shutdown embedded kafka at the end of 
> integration tests. So, hive bridge ITs fail. Hive bridge ITs pass if run on 
> their own. Still checking on this
> 
> 
> Diffs
> -
> 
>   addons/hive-bridge/pom.xml 914d8c6 
>   addons/hive-bridge/src/bin/import-hive.sh 99300e8 
>   
> addons/hive-bridge/src/main/java/org/apache/atlas/hive/bridge/HiveMetaStoreBridge.java
>  4d1af4e 
>   addons/hive-bridge/src/main/java/org/apache/atlas/hive/hook/HiveHook.java 
> fe26446 
>   
> addons/hive-bridge/src/main/java/org/apache/atlas/hive/model/HiveDataModelGenerator.java
>  cb8359e 
>   addons/hive-bridge/src/site/twiki/Bridge-Hive.twiki 647af27 
>   addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/HiveHookIT.java 
> 2bf3aba 
>   client/pom.xml 2e27930 
>   client/src/main/java/org/apache/atlas/ApplicationProperties.java 738ec53 
>   client/src/main/java/org/apache/atlas/AtlasClient.java 1c7d62a 
>   client/src/test/java/org/apache/atlas/ApplicationPropertiesTest.java 
> 4acb3e1 
>   client/src/test/resources/application.properties dbd6002 
>   common/pom.xml PRE-CREATION 
>   common/src/main/java/org/apache/atlas/service/Service.java PRE-CREATION 
>   common/src/main/java/org/apache/atlas/service/Services.java PRE-CREATION 
>   dashboard/public/modules/details/detailsResource.js af2f249 
>   dashboard/public/modules/search/searchController.js b5e6c37 
>   distro/pom.xml d42d78f 
>   distro/src/bin/atlas_start.py 7680f04 
>   distro/src/conf/application.properties bf323a7 
>   distro/src/main/assemblies/standalone-package.xml 625396a 
>   docs/pom.xml 4535fe0 
>   docs/src/site/resources/architecture.png 826df37 
>   docs/src/site/resources/data-types.png 3aa1904 
>   docs/src/site/resources/guide-class-diagram.png ca51239 
>   docs/src/site/resources/guide-instance-graph.png a2c8f82 
>   docs/src/site/resources/images/twiki/architecture.png PRE-CREATION 
>   docs/src/site/resources/images/twiki/data-types.png PRE-CREATION 
>   docs/src/site/resources/images/twiki/guide-class-diagram.png PRE-CREATION 
>   docs/src/site/resources/images/twiki/guide-instance-graph.png PRE-CREATION 
>   docs/src/site/resources/images/twiki/notification.png PRE-CREATION 
>   docs/src/site/resources/images/twiki/types-instance.png PRE-CREATION 
>   

[jira] [Commented] (ATLAS-173) Trial balance & Balance sheet reports don't pick up all GL account

2015-09-21 Thread Nu Huynh (JIRA)

[ 
https://issues.apache.org/jira/browse/ATLAS-173?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=14900381#comment-14900381
 ] 

Nu Huynh commented on ATLAS-173:


Hi Suma,
Sorry I'm new to the community. I created this issue by mistake but it is 
actually what I am testing and having problem with.
What does "wrong queue" mean? Thanks.

> Trial balance & Balance sheet reports don't pick up all GL account
> --
>
> Key: ATLAS-173
> URL: https://issues.apache.org/jira/browse/ATLAS-173
> Project: Atlas
>  Issue Type: Bug
>Reporter: Nu Huynh
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)